⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Wt
All Projects
Wt
Overview
Activity
Roadmap
Issues
Wiki
Forums
Download (386 Bytes)
Bug #1698
» testtab.cpp
Max Quatember
, 02/14/2013 08:46 AM
class
TestTab
:
public
Wt
::
WApplication
{
public:
TestTab
(
const
Wt
::
WEnvironment
&
env
)
:
Wt
::
WApplication
(
env
)
{
setCssTheme
(
"polished"
);
Wt
::
WTabWidget
*
w
=
new
Wt
::
WTabWidget
(
root
()
);
w
->
resize
(
500
,
500
);
for
(
int
i
=
0
;
i
<
3
;
++
i
)
{
w
->
addTab
(
new
Wt
::
WText
(
"xx"
),
"xx"
);
w
->
setTabCloseable
(
i
,
true
);
}
}
};
« Previous
1
2
Next »
(2-2/2)
Loading...