diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-02 12:32:44 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-02 12:32:55 +0300 |
commit | 931a7dc1ac0dbc7e6c1083583ced915e572f5b47 (patch) | |
tree | 9fe9a6448d44030e26aa7107ce16044ed413e0d0 /plugins/NewsAggregator/Src/Options.h | |
parent | dd7d9954042254e66e3bbbec7195c6be8b1a0663 (diff) |
all protocols (even virtual ones) moved to the Protocols folder
Diffstat (limited to 'plugins/NewsAggregator/Src/Options.h')
-rw-r--r-- | plugins/NewsAggregator/Src/Options.h | 162 |
1 files changed, 0 insertions, 162 deletions
diff --git a/plugins/NewsAggregator/Src/Options.h b/plugins/NewsAggregator/Src/Options.h deleted file mode 100644 index 2389eb9bb9..0000000000 --- a/plugins/NewsAggregator/Src/Options.h +++ /dev/null @@ -1,162 +0,0 @@ -#ifndef _OPTIONS_H_ -#define _OPTIONS_H_ - -class COptionsMain : public CDlgBase -{ -private: - CCtrlListView m_feeds; - CCtrlButton m_add; - CCtrlButton m_change; - CCtrlButton m_delete; - CCtrlButton m_import; - CCtrlButton m_export; - CCtrlCheck m_checkonstartup; - -protected: - bool OnInitDialog() override; - bool OnApply() override; - - void OnAddButtonClick(CCtrlBase*); - void OnChangeButtonClick(CCtrlBase*); - void OnDeleteButtonClick(CCtrlBase*); - void OnImportButtonClick(CCtrlBase*); - void OnExportButtonClick(CCtrlBase*); - - void OnFeedListItemChanged(CCtrlListView::TEventInfo *evt); - void OnFeedListDoubleClick(CCtrlBase*); - - void UpdateList(); - -public: - COptionsMain(); -}; - -class CFeedEditor : public CDlgBase -{ - friend class CAuthRequest; - -private: - typedef CDlgBase CSuper; - - int m_iItem; - CCtrlListView *m_list; - MCONTACT m_hContact; - - CCtrlEdit m_feedtitle; - CCtrlEdit m_feedurl; - CCtrlEdit m_checktime; - CCtrlSpin m_checktimespin; - CCtrlButton m_checkfeed; - CCtrlEdit m_tagedit; - CCtrlButton m_reset; - CCtrlButton m_help; - CCtrlButton m_ok; - -protected: - bool OnInitDialog() override; - bool OnClose() override; - - void OnCheckFeed(CCtrlBase*); - void OnReset(CCtrlBase*); - void OnHelp(CCtrlBase*); - void OnOk(CCtrlBase*); - void OnUseAuth(CCtrlBase*); - -public: - CCtrlCheck m_useauth; - CCtrlEdit m_login; - CCtrlEdit m_password; - - CFeedEditor(int iItem, CCtrlListView *m_list, MCONTACT Contact); - - __inline MCONTACT getContact() const { return m_hContact; } -}; - -class CImportFeed : public CDlgBase -{ -private: - typedef CDlgBase CSuper; - - CCtrlListView *m_list; - - CCtrlEdit m_importfile; - CCtrlButton m_browsefile; - CCtrlListBox m_feedslist; - CCtrlListBox m_feedsimportlist; - CCtrlButton m_addfeed; - CCtrlButton m_removefeed; - CCtrlButton m_addallfeeds; - CCtrlButton m_removeallfeeds; - CCtrlButton m_ok; - -protected: - bool OnInitDialog() override; - bool OnClose() override; - - void OnBrowseFile(CCtrlBase*); - void OnAddFeed(CCtrlBase*); - void OnRemoveFeed(CCtrlBase*); - void OnAddAllFeeds(CCtrlBase*); - void OnRemoveAllFeeds(CCtrlBase*); - void OnOk(CCtrlBase*); - - void OnFeedsList(CCtrlBase*); - void OnFeedsImportList(CCtrlBase*); - -public: - CImportFeed(CCtrlListView *m_list); -}; - -class CExportFeed : public CDlgBase -{ -private: - typedef CDlgBase CSuper; - - CCtrlListBox m_feedslist; - CCtrlListBox m_feedsexportlist; - CCtrlButton m_addfeed; - CCtrlButton m_removefeed; - CCtrlButton m_addallfeeds; - CCtrlButton m_removeallfeeds; - CCtrlButton m_ok; - -protected: - bool OnInitDialog() override; - bool OnClose() override; - - void OnAddFeed(CCtrlBase*); - void OnRemoveFeed(CCtrlBase*); - void OnAddAllFeeds(CCtrlBase*); - void OnRemoveAllFeeds(CCtrlBase*); - void OnOk(CCtrlBase*); - - void OnFeedsList(CCtrlBase*); - void OnFeedsExportList(CCtrlBase*); - -public: - CExportFeed(); -}; - -class CAuthRequest : public CDlgBase -{ -private: - typedef CDlgBase CSuper; - - CFeedEditor *m_pDlg; - MCONTACT m_hContact; - - CCtrlBase m_feedname; - CCtrlEdit m_username; - CCtrlEdit m_password; - CCtrlButton m_ok; - -protected: - bool OnInitDialog() override; - - void OnOk(CCtrlBase*); - -public: - CAuthRequest(CFeedEditor *pDlg, MCONTACT hContact); -}; - -#endif //_OPTIONS_H_
\ No newline at end of file |