deck editor

This commit is contained in:
Max-Wilhelm Bruker 2009-05-24 02:36:39 +02:00
parent d9e51e58a3
commit 1e702642a4
2 changed files with 31 additions and 3 deletions

View file

@ -18,6 +18,7 @@ class WndDeckEditor : public QMainWindow {
private slots:
void updateCardInfoLeft(const QModelIndex &current, const QModelIndex &previous);
void updateCardInfoRight(const QModelIndex &current, const QModelIndex &previous);
void updateSearch(const QString &search);
void actNewDeck();
void actLoadDeck();
@ -41,7 +42,7 @@ private:
QTreeView *databaseView;
QTreeView *deckView;
CardInfoWidget *cardInfo;
QLineEdit *nameEdit, *commentsEdit;
QLineEdit *searchEdit, *nameEdit, *commentsEdit;
QMenu *deckMenu;
QAction *aNewDeck, *aLoadDeck, *aSaveDeck, *aSaveDeckAs;