Random changes
[irwi] / src / settingsdlg.cpp
index 031aaec..e5ff772 100644 (file)
@@ -7,8 +7,16 @@
 SettingsDlg::SettingsDlg(QWidget *parent)
     : QDialog(parent)
 {
+    this->setWindowTitle(tr("Settings"));
     layout = new QHBoxLayout(this);
-    layout->addWidget(new QLabel("foo"));
+
+    alphabetList = new QListWidget(this);
+    for (char c = 'a'; c <= 'z'; ++c)
+    {
+        alphabetList.addItem(QString(c));
+    }
+    layout->addWidget(alphabetList);
+    
     layout->addWidget(new QLabel("bar"));
     layout->addWidget(new QLabel("baz"));
     this->setLayout(layout);