mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
Docking: Minor bug-fix, PopUpDockWindow confirmed as working, more complex dynamic allocation supported QuickTabsTest: Modified to use TabBar-derived QuickTabs git-svn-id: svn://ultimatepp.org/upp/trunk@1104 f0d560ea-af0d-0410-9eb7-867de7ffcac7
33 lines
534 B
C++
33 lines
534 B
C++
#ifndef _App_h
|
|
#define _App_h
|
|
|
|
#define QUICKTABS_TEST
|
|
#include <CtrlLib/CtrlLib.h>
|
|
#include "QuickTabs.h"
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <QuickTabsTest/QuickTabsTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
Image IdeFileImage(const String& t, bool a);
|
|
|
|
class App : public WithQuickTabsLayout<TopWindow>
|
|
{
|
|
private:
|
|
QuickTabs l_tabs;
|
|
FileTabs t_tabs;
|
|
QuickTabs r_tabs;
|
|
QuickTabs b_tabs;
|
|
public:
|
|
typedef App CLASSNAME;
|
|
App();
|
|
void Drag();
|
|
void OnFileCursor();
|
|
void OnStacking();
|
|
void GoLastVis();
|
|
|
|
};
|
|
|
|
#endif
|
|
|