Subversion Repositories public

Rev

Rev 232 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 232 Rev 245
Line 23... Line 23...
23
 
23
 
24
#ifdef HAVE_CONFIG_H
24
#ifdef HAVE_CONFIG_H
25
#include <config.h>
25
#include <config.h>
26
#endif
26
#endif
27
 
27
 
28
#include <kmainwindow.h>
28
#include <KXmlGuiWindow>
-
 
29
#include <KIconLoader>
-
 
30
#include "sportwatcherwidget.h"
29
 
31
 
30
/**
32
/**
31
 * @short Application Main Window
33
 * @short Application Main Window
32
 * @author Andreas Theofilu <andreas@theosys.at>
34
 * @author Andreas Theofilu <andreas@theosys.at>
33
 * @version 0.2
35
 * @version 0.6
34
 */
36
 */
35
class sportwatcher : public KMainWindow
37
class sportwatcher : public KXmlGuiWindow
36
{
38
{
37
    Q_OBJECT
39
	Q_OBJECT
-
 
40
 
38
public:
41
	public:
39
    /**
-
 
40
     * Default Constructor
-
 
41
     */
-
 
42
    sportwatcher(QWidget *parent = 0, Qt::WindowFlags f = KDE_DEFAULT_WINDOWFLAGS);
42
	   sportwatcher(QWidget *parent = 0, Qt::WindowFlags f = KDE_DEFAULT_WINDOWFLAGS);
-
 
43
	   virtual ~sportwatcher();
43
 
44
 
44
    /**
45
	private:
45
     * Default Destructor
46
	   void setupActions();
-
 
47
 
46
     */
48
	private:
47
    virtual ~sportwatcher();
49
	   sportwatcherWidget *m_view;
48
};
50
};
49
 
51
 
50
#endif // _SPORTWATCHER_H_
52
#endif // _SPORTWATCHER_H_