diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-08-21 04:05:55 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-08-21 04:05:55 +0300 |
commit | c8029a36924fdad89b2455746bfd771da723287f (patch) | |
tree | ecf981983d178176bd2e9619c7040c743c34d67d /client-qt/udm-client-qt/udm_main.h | |
parent | c83c19a7d93ee77617c6e47bf0700346545b4611 (diff) |
client-qt:
correct network thread termination
downloads model skeleton
filters model skeleton
empty download info tabwindow
main window layout
initial server data requests (settings, modules, downloads)
protocol:
renamed most of ui_* messages to download_ui* as it more precise
reworked ui related proto part
added download related messages (should be sufficient for now)
some work on event subscription part
bit of work on module related messages
added more top level messages (most of defined messages may be used now)
Diffstat (limited to 'client-qt/udm-client-qt/udm_main.h')
-rw-r--r-- | client-qt/udm-client-qt/udm_main.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client-qt/udm-client-qt/udm_main.h b/client-qt/udm-client-qt/udm_main.h index 8861403..9d56822 100644 --- a/client-qt/udm-client-qt/udm_main.h +++ b/client-qt/udm-client-qt/udm_main.h @@ -29,6 +29,12 @@ class client_session; class QLabel; +class QTableView; +class QTreeView; +class QTabWidget; +class downloads_model; +class filters_model; +class QSplitter; namespace boost { namespace asio { @@ -63,6 +69,12 @@ private: boost::asio::io_service *io_service_; QString auth_token; QLabel *lbl_state; + QTableView *tbl_downloads; + QTreeView *tree_filters; + QTabWidget *tabs_info; + downloads_model *mdl_downloads; + filters_model *mdl_filters; + QSplitter *spl_hor, *spl_vert; }; #endif // UDM_MAIN_H |