summaryrefslogtreecommitdiffstats
path: root/kanagram/src/newstuff.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kanagram/src/newstuff.cpp')
-rw-r--r--kanagram/src/newstuff.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/kanagram/src/newstuff.cpp b/kanagram/src/newstuff.cpp
new file mode 100644
index 00000000..19c28272
--- /dev/null
+++ b/kanagram/src/newstuff.cpp
@@ -0,0 +1,29 @@
+#include "newstuff.h"
+
+#include <qwidget.h>
+#include <qpushbutton.h>
+
+#include <kdebug.h>
+#include <knewstuff/downloaddialog.h>
+#include <knewstuff/knewstuff.h>
+#include <klocale.h>
+
+#include "kanagramsettings.h"
+#include "newstuffdialog.h"
+
+NewStuff::NewStuff(QWidget *parent) : NewStuffWidget(parent)
+{
+ connect(btnGetNew, SIGNAL(clicked()), this, SLOT(slotGetNewVocabs()));
+}
+
+NewStuff::~NewStuff()
+{
+}
+
+void NewStuff::slotGetNewVocabs()
+{
+ NewStuffDialog *nsd = new NewStuffDialog();
+ nsd->download();
+}
+
+#include "newstuff.moc"