diff options
| -rw-r--r-- | client/add.png | bin | 0 -> 242 bytes | |||
| -rw-r--r-- | client/arrows.png | bin | 0 -> 547 bytes | |||
| -rw-r--r-- | client/del.png | bin | 0 -> 370 bytes | |||
| -rw-r--r-- | client/widgets/multilist.cc | 17 | 
4 files changed, 12 insertions, 5 deletions
| diff --git a/client/add.png b/client/add.pngBinary files differ new file mode 100644 index 0000000..7a8dfc0 --- /dev/null +++ b/client/add.png diff --git a/client/arrows.png b/client/arrows.pngBinary files differ new file mode 100644 index 0000000..ae56b01 --- /dev/null +++ b/client/arrows.png diff --git a/client/del.png b/client/del.pngBinary files differ new file mode 100644 index 0000000..222ac8b --- /dev/null +++ b/client/del.png diff --git a/client/widgets/multilist.cc b/client/widgets/multilist.cc index d83423c..5ba40ac 100644 --- a/client/widgets/multilist.cc +++ b/client/widgets/multilist.cc @@ -88,21 +88,28 @@ MultiList::MultiList(QDomNode &node, MacroWindow *macrowindow)      printf("ERROR: Missing 'innerwidget' attribute on multilist!\n");    } +  QLabel *arrows = new QLabel(); +  arrows->setPixmap(QPixmap("arrows.png")); +  layout->addWidget(arrows, 1, 0, 1, 2, Qt::AlignHCenter); +      QPushButton *add = new QPushButton(this);    connect(add, SIGNAL(clicked()), this, SLOT(add())); -  add->setText("Tilføj"); +  add->setText("Tilføj ovenstående til listen"); +  add->setIcon(QIcon(QPixmap("add.png"))); +    //  layout->addWidget(add, 0, 1, Qt::AlignTop); -  layout->addWidget(add, 1, 0, 1, 1, Qt::AlignTop); +  layout->addWidget(add, 2, 0, 1, 1, Qt::AlignTop);    QPushButton *rem = new QPushButton(this);    connect(rem, SIGNAL(clicked()), this, SLOT(remove())); -  rem->setText("Fjern"); +  rem->setText("Fjern det markerede element fra listen"); +  rem->setIcon(QIcon(QPixmap("del.png")));    //  layout->addWidget(rem, 1, 1, Qt::AlignTop); -  layout->addWidget(rem, 1, 1, 1, 1, Qt::AlignTop); +  layout->addWidget(rem, 2, 1, 1, 1, Qt::AlignTop);    list = new QListWidget(this);    //  layout->addWidget(list, 1, 0, Qt::AlignTop); -  layout->addWidget(list, 2, 0, 1, 2, Qt::AlignTop); +  layout->addWidget(list, 3, 0, 1, 2, Qt::AlignTop);    /* // This is done later    if(elem.hasAttribute("value")) { | 
