diff options
author | Alexander Tkachev | 2016-07-05 13:11:29 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | ad069f442ce1a042361620f30d5b313668df23c4 (patch) | |
tree | 888d68c9959f7d520c52795a7f067675d577387b /gui/options.h | |
parent | 2284333b1c9348638ce0255668f4c0abb85aeb84 (diff) | |
download | scummvm-rg350-ad069f442ce1a042361620f30d5b313668df23c4.tar.gz scummvm-rg350-ad069f442ce1a042361620f30d5b313668df23c4.tar.bz2 scummvm-rg350-ad069f442ce1a042361620f30d5b313668df23c4.zip |
GUI: Add "Run server" button in Cloud tab
Diffstat (limited to 'gui/options.h')
-rw-r--r-- | gui/options.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/options.h b/gui/options.h index fa7a1d28b9..77470aef57 100644 --- a/gui/options.h +++ b/gui/options.h @@ -247,7 +247,7 @@ protected: PopUpWidget *_updatesPopUp; #endif -#ifdef USE_CLOUD +#if defined USE_CLOUD || defined USE_SDL_NET // // Cloud controls // @@ -263,9 +263,13 @@ protected: ButtonWidget *_storageConnectButton; ButtonWidget *_storageRefreshButton; ButtonWidget *_storageDownloadButton; + ButtonWidget *_runServerButton; + StaticTextWidget *_serverInfoLabel; bool _redrawCloudTab; void setupCloudTab(); +#endif +#ifdef USE_CLOUD void storageInfoCallback(Cloud::Storage::StorageInfoResponse response); void storageListDirectoryCallback(Cloud::Storage::ListDirectoryResponse response); #endif |