~ubuntu-branches/ubuntu/natty/kadu/natty

« back to all changes in this revision

Viewing changes to modules/weather/weather_cfg_ui_handler.h

  • Committer: Package Import Robot
  • Author(s): Kiszel Kristóf
  • Date: 2010-07-21 15:24:54 UTC
  • mfrom: (0.6.1) (0.5.1) (1.4.1) (22.1.2 maverick)
  • Revision ID: package-import@ubuntu.com-20100721152454-vttqle18lovfudni
Tags: 0.6.5.4.ds1-3ubuntu2
Remove libqt4-webkit-dev from build-depends and add
libqtwebkit-dev for qtwebkit transition

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *                                                                         *
 
3
 *   This program is free software; you can redistribute it and/or modify  *
 
4
 *   it under the terms of the GNU General Public License as published by  *
 
5
 *   the Free Software Foundation; either version 2 of the License, or     *
 
6
 *   (at your option) any later version.                                   *
 
7
 *                                                                         *
 
8
 ***************************************************************************/
 
9
 
 
10
#ifndef WEATHERCFGUIHANDLER_H
 
11
#define WEATHERCFGUIHANDLER_H
 
12
 
 
13
#include <QtGui/QTreeWidget>
 
14
 
 
15
#include "configuration_aware_object.h"
 
16
#include "main_configuration_window.h"
 
17
 
 
18
class WeatherCfgUiHandler : public ConfigurationUiHandler, ConfigurationAwareObject
 
19
{
 
20
        Q_OBJECT
 
21
                        
 
22
        public:
 
23
                WeatherCfgUiHandler();
 
24
                ~WeatherCfgUiHandler();
 
25
                
 
26
        private:
 
27
                virtual void mainConfigurationWindowCreated( MainConfigurationWindow* mainCfgWindow );
 
28
                virtual void configurationUpdated();
 
29
                QTreeWidget* serverList_;
 
30
                
 
31
        private slots:
 
32
                void serverListItemChanged( QTreeWidgetItem* item, int column );
 
33
                void upClicked();
 
34
                void downClicked();
 
35
        
 
36
};
 
37
 
 
38
#endif // WEATHERCFGUIHANDLER