ultimatepp/reference/Layouts/Layouts.h
cxl f9294fce1d .reference
git-svn-id: svn://ultimatepp.org/upp/trunk@8207 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-02-24 12:35:32 +00:00

17 lines
487 B
C++

#ifndef _Layouts_Layouts_h_
#define _Layouts_Layouts_h_
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <Layouts/layoutfile1.lay> // Layouts will be visible in all files that #include Layouts.h
#include <CtrlCore/lay.h>
// FirstTabDlg will be visible in all files that #include Layouts.h
struct FirstTabDlg : WithFirstTabLayout<ParentCtrl> { // ParentCtrl is a good base class for tabs
typedef FirstTabDlg CLASSNAME;
FirstTabDlg();
};
#endif