~ubuntu-branches/ubuntu/vivid/mygui/vivid

« back to all changes in this revision

Viewing changes to Tools/EditorFramework/SettingsWindow.h

  • Committer: Package Import Robot
  • Author(s): Scott Howard, Bret Curtis, Scott Howard
  • Date: 2014-09-18 17:57:48 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140918175748-dd8va78mvpw1jbes
Tags: 3.2.1-1
[ Bret Curtis ]
* Updated license for majority of files from LGPL to Expat (MIT)

[ Scott Howard ]
* New upstream release
* Updated patch to add build option for system GLEW libraries
* All patches accepted upstream except shared_libraries.patch
* Bumped SONAME due to dropped symbols, updated *.symbols and package
  names
* Updated license of debian/* to Expat with permission of all authors
* Don't install Doxygen autogenerated md5 and map files (thanks
  lintian)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*!
 
2
        @file
 
3
        @author         Georgiy Evmenov
 
4
        @date           09/2008
 
5
*/
 
6
 
 
7
#ifndef _45147871_9597_4bee_b5ea_e6a2c1dd53b2_
 
8
#define _45147871_9597_4bee_b5ea_e6a2c1dd53b2_
 
9
 
 
10
#include "Dialog.h"
 
11
#include "Control.h"
 
12
 
 
13
namespace tools
 
14
{
 
15
 
 
16
        class MYGUI_EXPORT_DLL SettingsWindow :
 
17
                public Dialog,
 
18
                public Control,
 
19
                public sigslot::has_slots<>
 
20
        {
 
21
        public:
 
22
                SettingsWindow();
 
23
                virtual ~SettingsWindow();
 
24
 
 
25
        protected:
 
26
                virtual void OnInitialise(Control* _parent, MyGUI::Widget* _place, const std::string& _layoutName);
 
27
 
 
28
        private:
 
29
                bool checkCommand();
 
30
                void commandSettingsAccept(const MyGUI::UString& _commandName, bool& _result);
 
31
                void commandSettingsCancel(const MyGUI::UString& _commandName, bool& _result);
 
32
 
 
33
                void InitialiseListTab();
 
34
                void notifyListChangePosition(MyGUI::ListBox* _sender, size_t _index);
 
35
 
 
36
        private:
 
37
                MyGUI::ListBox* mListSettings;
 
38
                MyGUI::TabControl* mTabSettings;
 
39
        };
 
40
 
 
41
}
 
42
 
 
43
#endif