From 591fe0685bed981b7bc2824954a4df0c980f1166 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 12 Jul 2013 14:44:46 +0000 Subject: Adds an embeded application icon, updates the TODO list. --- src/mainwindow.cc | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainwindow.cc b/src/mainwindow.cc index 5a80459..873502e 100644 --- a/src/mainwindow.cc +++ b/src/mainwindow.cc @@ -2,10 +2,35 @@ #include "mainwindow.h" #include "solverwindow.h" +/* XPM */ +const char *icon_xpm[] = { +"16 16 2 1", +" c #000000", +". c #FFFFFF", +" ", +" .... .... .... ", +" .... .... .... ", +" .... .... .... ", +" .... .... .... ", +" ", +" .... .... .... ", +" .... .... .... ", +" .... .... .... ", +" .... .... .... ", +" ", +" .... .... .... ", +" .... .... .... ", +" .... .... .... ", +" .... .... .... ", +" "}; + + MainWindow::MainWindow() { - setWindowTitle(tr("Sudoku")); + setWindowTitle(tr("Sudoku")); + setWindowIcon(QIcon(QPixmap(icon_xpm))); + mainwindow_solverwindow = new SolverWindow(); setCentralWidget(mainwindow_solverwindow); -- cgit v1.2.3