| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // Please see LICENSE.md in repository root for license information
- // https://github.com/AtomicGameEngine/AtomicGameEngine
- #pragma once
- #include "UI/AEWidget.h"
- using namespace Atomic;
- using namespace tb;
- namespace tb
- {
- class TBLayout;
- }
- namespace AtomicEditor
- {
- class UIBuildSettingsWindows: public AEWidget
- {
- OBJECT(UIBuildSettingsWindows);
- public:
- UIBuildSettingsWindows(Context* context);
- virtual ~UIBuildSettingsWindows();
- bool OnEvent(const TBWidgetEvent &ev);
- void Refresh();
- void StoreSettings();
- //void HandleMessage(StringHash eventType, VariantMap& eventData);
- private:
- TBEditField* appNameEdit_;
- TBEditField* appPackageEdit_;
- TBEditField* productNameEdit_;
- TBEditField* companyNameEdit_;
- };
- }
|