Handle language change events in widgets.
[maemo-rb.git] / rbutil / rbutilqt / uninstallwindow.h
blobd6f477c2f3d1856917d39cdf38e8a789f2cf5ec3
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
21 #ifndef UNINSTALLWINDOW_H
22 #define UNINSTALLWINDOW_H
24 #include <QtGui>
26 #include "ui_uninstallfrm.h"
27 #include "progressloggergui.h"
28 #include "uninstall.h"
30 class UninstallWindow : public QDialog
32 Q_OBJECT
33 public:
34 UninstallWindow(QWidget *parent = 0);
36 public slots:
37 void accept(void);
39 private slots:
40 void selectionChanged();
41 void UninstallMethodChanged(bool complete);
43 private:
44 void changeEvent(QEvent *event);
45 Uninstaller* uninstaller;
46 Ui::UninstallFrm ui;
47 ProgressLoggerGui* logger;
51 #endif