diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-01-03 11:50:41 +0100 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-01-03 11:50:41 +0100 | 
| commit | 756da05c384e3d9258fc07cf9441d899238503f1 (patch) | |
| tree | b3385216148d51a2378a2bed5dfc3f0a27d4f1ec /plugingui/mainwindow.h | |
| parent | 645250e1cd8ce9bc1faea599df7a1b05836bfeb8 (diff) | |
Add dggui namespace to libdggui components.
Diffstat (limited to 'plugingui/mainwindow.h')
| -rw-r--r-- | plugingui/mainwindow.h | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/plugingui/mainwindow.h b/plugingui/mainwindow.h index efacf07..ae0da8b 100644 --- a/plugingui/mainwindow.h +++ b/plugingui/mainwindow.h @@ -42,7 +42,7 @@ namespace GUI  {  class MainWindow -	: public Window +	: public dggui::Window  {  public: @@ -65,31 +65,31 @@ private:  	void changeDrumkitTabVisibility(bool visible);  	// From Widget -	void repaintEvent(RepaintEvent* repaintEvent) override final; +	void repaintEvent(dggui::RepaintEvent* repaintEvent) override final;  	Config config;  	SettingsNotifier settings_notifier; -	TabWidget tabs{this}; +	dggui::TabWidget tabs{this};  	MainTab main_tab;  	DrumkitTab drumkit_tab;  	AboutTab about_tab{&tabs}; -	Image back{":resources/bg.png"}; +	dggui::Image back{":resources/bg.png"}; -	TexturedBox sidebar{getImageCache(), ":resources/sidebar.png", +	dggui::TexturedBox sidebar{getImageCache(), ":resources/sidebar.png",  			0, 0, // offset  			16, 0, 0, // delta-x  			14, 1, 14}; // delta-y -	TexturedBox topbar{getImageCache(), ":resources/topbar.png", +	dggui::TexturedBox topbar{getImageCache(), ":resources/topbar.png",  			0, 0, // atlas offset (x, y)  			1, 1, 1, // dx1, dx2, dx3  			17, 1, 1}; // dy1, dy2, dy3  	bool closing{false}; -	TabID drumkit_tab_id; +	dggui::TabID drumkit_tab_id;  };  } // GUI:: | 
