diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2016-01-24 13:45:40 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2016-01-24 13:45:40 +0300 |
commit | 3a9a8aa78ada7c5137b4b74c41be7088d2d1fd00 (patch) | |
tree | d8bec65519f070944738cbaeecd70536f4b7abcb /client-qt/udm-client-qt/udm_main.cpp | |
parent | 7c4d85348ecbb9913948edc53b82efaa97d85fda (diff) |
server:
curl_downloader_module:
basic data transfer handling (now able to save file, still need a lot of validation)
some tracing code
this may be called first working prototype with vary basic functionality implemented.
currently udm have working server, working qt client and able to download url via curl module (most of additional events like
download progress currently not
implemented, code need lots of sanity checks and exception handling)
Diffstat (limited to 'client-qt/udm-client-qt/udm_main.cpp')
-rw-r--r-- | client-qt/udm-client-qt/udm_main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client-qt/udm-client-qt/udm_main.cpp b/client-qt/udm-client-qt/udm_main.cpp index 4110f03..5df22a7 100644 --- a/client-qt/udm-client-qt/udm_main.cpp +++ b/client-qt/udm-client-qt/udm_main.cpp @@ -543,5 +543,6 @@ void udm_main::client_disconnected() btn_del->setEnabled(false); btn_start->setEnabled(false); btn_stop->setEnabled(false); + //TODO: disable all actions which require alive connection lbl_state->setText(tr("State") + ": " + tr("Disconnected")); } |