ultimatepp/bazaar/QuickTabsTest/QuickTabsTest.h
mrjt ffb0b9d653 TabBar: Tab Stacking and sorting added
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
2009-04-27 13:21:38 +00:00

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