-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into dev-sge
- Loading branch information
Showing
28 changed files
with
216 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
...e/ui/qt/controller/measurement_picker.hpp → ...nternal/controller/picker/measurement.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 13 additions & 10 deletions
23
...clude/ui/qt/controller/debug_shortcut.hpp → ...ui/internal/controller/shortcut/debug.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
#ifndef __VTX_UI_QT_CONTROLLER_DEBUG_SHORTCUT__ | ||
#define __VTX_UI_QT_CONTROLLER_DEBUG_SHORTCUT__ | ||
#ifndef __VTX_UI_INTERNAL_CONTROLLER_DEBUG_SHORTCUT__ | ||
#define __VTX_UI_INTERNAL_CONTROLLER_DEBUG_SHORTCUT__ | ||
|
||
#include "ui/core/input/keys.hpp" | ||
#include "ui/qt/controller/base_shortcut_controller.hpp" | ||
#include "ui/qt/controller/controller_manager.hpp" | ||
#include <memory> | ||
#include <util/hashing.hpp> | ||
|
||
namespace VTX::UI::QT::Controller | ||
namespace VTX::UI::Internal::Controller::Shortcut | ||
{ | ||
class DebugShortcut final : public BaseShortcutController | ||
using namespace VTX::UI::QT; | ||
using namespace VTX::UI::QT::Controller; | ||
|
||
class Debug final : public BaseShortcutController | ||
{ | ||
public: | ||
inline static const App::Core::CollectionKey COLLECTION_ID = "CONTROLLER_SHORTCUT_DEBUG"; | ||
inline static const VTX::Util::Hashing::Hash HASHED_COLLECTION_ID = VTX::Util::Hashing::hash( COLLECTION_ID ); | ||
|
||
private: | ||
inline static const ControllerCollection::Registration<DebugShortcut> _reg { COLLECTION_ID }; | ||
inline static const ControllerCollection::Registration<Debug> _reg { COLLECTION_ID }; | ||
|
||
public: | ||
DebugShortcut() = default; | ||
DebugShortcut( const DebugShortcut & p_source ) = default; | ||
~DebugShortcut() = default; | ||
Debug() = default; | ||
Debug( const Debug & p_source ) = default; | ||
~Debug() = default; | ||
|
||
void init() override; | ||
|
||
inline VTX::Util::Hashing::Hash getHashedCollectionID() const override { return HASHED_COLLECTION_ID; }; | ||
std::unique_ptr<BaseController> clone() const { return std::make_unique<DebugShortcut>( *this ); }; | ||
std::unique_ptr<BaseController> clone() const { return std::make_unique<Debug>( *this ); }; | ||
}; | ||
} // namespace VTX::UI::QT::Controller | ||
} // namespace VTX::UI::Internal::Controller::Shortcut | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#ifndef __VTX_UI_INTERNAL_INIT_VISUALIZATION_MODE__ | ||
#define __VTX_UI_INTERNAL_INIT_VISUALIZATION_MODE__ | ||
|
||
#include "ui/qt/mode/visualization.hpp" | ||
|
||
namespace VTX::UI::Internal | ||
{ | ||
void init( QT::Mode::Visualization & p_visualization ); | ||
} // namespace VTX::UI::Internal | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 0 additions & 34 deletions
34
lib/ui/include/ui/qt/controller/camera_animation_controller.hpp
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.