⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Wt
All Projects
Wt
Overview
Activity
Roadmap
Issues
Wiki
Forums
Download (721 Bytes)
Bug #1380
» scrool-to.cpp
Error -
Boris Nagaev
, 07/30/2012 06:51 PM
#include
<Wt/WApplication>
#include
<Wt/WRandom>
#include
<Wt/WTableView>
#include
<Wt/WStringListModel>
using
namespace
Wt
;
class
App
:
public
WApplication
{
public:
App
(
const
WEnvironment
&
env
)
:
WApplication
(
env
)
{
WTableView
*
view
=
new
WTableView
(
root
());
WStringListModel
*
model
=
new
WStringListModel
();
for
(
int
i
=
0
;
i
<
1000
;
i
++
)
{
model
->
addString
(
WRandom
::
generateId
());
}
view
->
resize
(
500
,
500
);
view
->
setModel
(
model
);
view
->
scrollTo
(
model
->
index
(
900
,
0
));
}
};
WApplication
*
createApp
(
const
WEnvironment
&
env
)
{
return
new
App
(
env
);
}
int
main
(
int
argc
,
char
**
argv
)
{
return
WRun
(
argc
,
argv
,
&
createApp
);
}
« Previous
1
2
Next »
(2-2/2)
Loading...