File: fraqtivemainwindow.h

package info (click to toggle)
fraqtive 0.4.3-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 988 kB
  • ctags: 1,249
  • sloc: cpp: 8,387; sh: 103; makefile: 45
file content (75 lines) | stat: -rw-r--r-- 2,079 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**************************************************************************
* This file is part of the Fraqtive program
* Copyright (C) 2004-2008 Michał Męciński
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
**************************************************************************/

#ifndef FRAQTIVEMAINWINDOW_H
#define FRAQTIVEMAINWINDOW_H

#include <QMainWindow>

#include "ui_fraqtivemainwindow.h"

class FractalModel;
class Gradient;
class TutorialDialog;

class FraqtiveMainWindow : public QMainWindow
{
    Q_OBJECT
public:
    FraqtiveMainWindow();
    ~FraqtiveMainWindow();

public: // overrides
    bool eventFilter( QObject* watched, QEvent* e );

protected: // overrides
    void closeEvent( QCloseEvent* e );

private slots:
    void on_actionQuit_activated();
    void on_actionFractalType_activated();
    void on_actionEditGradient_activated();
    void on_actionFullScreen_activated();
    void on_actionNavigateBack_activated();
    void on_actionNavigateForward_activated();
    void on_actionDefaultPosition_activated();
    void on_actionLoadPreset_activated();
    void on_actionSavePreset_activated();
    void on_actionLoadBookmark_activated();
    void on_actionSaveBookmark_activated();
    void on_actionSaveImage_activated();
    void on_actionCopyImage_activated();
    void on_action2DView_activated();
    void on_action3DView_activated();
    void on_actionQuickTutorial_activated();
    void on_actionAboutFraqtive_activated();
    void on_actionAboutQt_activated();

    void positionChanged();
    void navigationChanged();

    void applyGradient( const Gradient& gradient );

private:
    bool isFullScreenMode() const;
    void enterFullScreenMode();
    void leaveFullScreenMode();

    QImage currentImage();

private:
    Ui::FraqtiveMainWindow m_ui;

    FractalModel* m_model;

    TutorialDialog* m_tutorialDialog;
};

#endif