~ubuntu-branches/ubuntu/precise/fritzing/precise

« back to all changes in this revision

Viewing changes to src/help/helper.h

  • Committer: Bazaar Package Importer
  • Author(s): Georges Khaznadar
  • Date: 2011-08-26 10:11:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110826101105-w5hmn7zcf93ig5v6
Tags: 0.6.3b-1
* upgrapded to the newer upstream version
* parameters of the function GraphicsUtils::distanceFromLine in 
  src/svg/groundplanegenerator.cpp:767 are now declared as doubles,
  which Closes: #636441
* the new version fixes src/utils/folderutils.cpp, which
  Closes: #636061

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*******************************************************************
2
 
 
3
 
Part of the Fritzing project - http://fritzing.org
4
 
Copyright (c) 2007-2010 Fachhochschule Potsdam - http://fh-potsdam.de
5
 
 
6
 
Fritzing is free software: you can redistribute it and/or modify
7
 
it under the terms of the GNU General Public License as published by
8
 
the Free Software Foundation, either version 3 of the License, or
9
 
(at your option) any later version.
10
 
 
11
 
Fritzing is distributed in the hope that it will be useful,
12
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
GNU General Public License for more details.
15
 
 
16
 
You should have received a copy of the GNU General Public License
17
 
along with Fritzing.  If not, see <http://www.gnu.org/licenses/>.
18
 
 
19
 
********************************************************************
20
 
 
21
 
$Revision: 4183 $:
22
 
$Author: cohen@irascible.com $:
23
 
$Date: 2010-05-06 22:30:19 +0200 (Thu, 06 May 2010) $
24
 
 
25
 
********************************************************************/
26
 
 
27
 
/*
28
 
 * Class that manage all the interactive helps in the main window
29
 
 */
30
 
 
31
 
#ifndef HELPER_H_
32
 
#define HELPER_H_
33
 
 
34
 
#include <QObject>
35
 
 
36
 
#include "sketchmainhelp.h"
37
 
#include "../mainwindow.h"
38
 
 
39
 
class Helper : public QObject {
40
 
        Q_OBJECT
41
 
        
42
 
        public:
43
 
                Helper(MainWindow *owner, bool doShow);
44
 
                ~Helper();
45
 
 
46
 
                void toggleHelpVisibility(int ix);
47
 
                void setHelpVisibility(int index, bool show);
48
 
                bool helpVisible(int index);
49
 
 
50
 
        public:
51
 
                static void initText();
52
 
 
53
 
        protected slots:
54
 
                void somethingDroppedIntoView(const QPoint &);
55
 
                void viewSwitched();
56
 
 
57
 
        protected:
58
 
                void connectToView(SketchWidget* view);
59
 
                SketchMainHelp *helpForIndex(int index);
60
 
 
61
 
        protected:
62
 
                MainWindow *m_owner;
63
 
 
64
 
                SketchMainHelp *m_breadMainHelp;
65
 
                SketchMainHelp *m_schemMainHelp;
66
 
                SketchMainHelp *m_pcbMainHelp;
67
 
 
68
 
                bool m_stillWaitingFirstDrop;
69
 
                bool m_stillWaitingFirstViewSwitch;
70
 
 
71
 
                qreal m_prevVScroolW;
72
 
                qreal m_prevHScroolH;
73
 
 
74
 
        protected:
75
 
                static QString BreadboardHelpText;
76
 
                static QString SchematicHelpText;
77
 
                static QString PCBHelpText;
78
 
 
79
 
};
80
 
 
81
 
#endif /* HELPER_H_ */
 
1
/*******************************************************************
 
2
 
 
3
Part of the Fritzing project - http://fritzing.org
 
4
Copyright (c) 2007-2011 Fachhochschule Potsdam - http://fh-potsdam.de
 
5
 
 
6
Fritzing is free software: you can redistribute it and/or modify
 
7
it under the terms of the GNU General Public License as published by
 
8
the Free Software Foundation, either version 3 of the License, or
 
9
(at your option) any later version.
 
10
 
 
11
Fritzing is distributed in the hope that it will be useful,
 
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License
 
17
along with Fritzing.  If not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
********************************************************************
 
20
 
 
21
$Revision: 5309 $:
 
22
$Author: cohen@irascible.com $:
 
23
$Date: 2011-07-30 21:17:22 +0200 (Sat, 30 Jul 2011) $
 
24
 
 
25
********************************************************************/
 
26
 
 
27
/*
 
28
 * Class that manage all the interactive helps in the main window
 
29
 */
 
30
 
 
31
#ifndef HELPER_H_
 
32
#define HELPER_H_
 
33
 
 
34
#include <QObject>
 
35
 
 
36
#include "sketchmainhelp.h"
 
37
#include "../mainwindow.h"
 
38
 
 
39
class Helper : public QObject {
 
40
        Q_OBJECT
 
41
        
 
42
        public:
 
43
                Helper(MainWindow *owner, bool doShow);
 
44
                ~Helper();
 
45
 
 
46
                void toggleHelpVisibility(int ix);
 
47
                void setHelpVisibility(int index, bool show);
 
48
                bool helpVisible(int index);
 
49
 
 
50
        public:
 
51
                static void initText();
 
52
 
 
53
        protected slots:
 
54
                void somethingDroppedIntoView(const QPoint &);
 
55
                void viewSwitched();
 
56
 
 
57
        protected:
 
58
                void connectToView(SketchWidget* view);
 
59
                SketchMainHelp *helpForIndex(int index);
 
60
 
 
61
        protected:
 
62
                MainWindow *m_owner;
 
63
 
 
64
                SketchMainHelp *m_breadMainHelp;
 
65
                SketchMainHelp *m_schemMainHelp;
 
66
                SketchMainHelp *m_pcbMainHelp;
 
67
 
 
68
                bool m_stillWaitingFirstDrop;
 
69
                bool m_stillWaitingFirstViewSwitch;
 
70
 
 
71
                double m_prevVScroolW;
 
72
                double m_prevHScroolH;
 
73
 
 
74
        protected:
 
75
                static QString BreadboardHelpText;
 
76
                static QString SchematicHelpText;
 
77
                static QString PCBHelpText;
 
78
 
 
79
};
 
80
 
 
81
#endif /* HELPER_H_ */