mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Add GroupModel and corresponding unit test.
This commit is contained in:
parent
9b0ba46b31
commit
072a8ccf1b
12 changed files with 922 additions and 8 deletions
20
src/main.cpp
20
src/main.cpp
|
@ -15,9 +15,29 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <QtGui/QApplication>
|
||||
#include <QtGui/QTreeView>
|
||||
|
||||
#include "core/Database.h"
|
||||
#include "core/Parser.h"
|
||||
#include "gui/GroupModel.h"
|
||||
|
||||
#include "../tests/config-keepassx-tests.h"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
Database* db= new Database();
|
||||
Parser* parser = new Parser(db);
|
||||
parser->parse(QString(KEEPASSX_TEST_DIR).append("/NewDatabase.xml"));
|
||||
|
||||
GroupModel groupModel(db->rootGroup());
|
||||
|
||||
QTreeView view;
|
||||
view.setModel(&groupModel);
|
||||
view.setHeaderHidden(true);
|
||||
view.expandAll();
|
||||
view.show();
|
||||
return app.exec();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue