~ubuntu-sdk-team/qtcreator-plugin-remotelinux/trunk

« back to all changes in this revision

Viewing changes to src/qnx/bardescriptoreditor.h

  • Committer: CI bot
  • Author(s): Benjamin Zeller
  • Date: 2014-06-16 10:28:43 UTC
  • mfrom: (4.2.4 remotelinux)
  • Revision ID: ps-jenkins@lists.canonical.com-20140616102843-8juvmjvzwlzsboyw
Migrating to Qt5.3 and QtC 3.1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
class QToolBar;
40
40
QT_END_NAMESPACE
41
41
 
 
42
namespace Utils { class LineColumnLabel; }
 
43
 
42
44
namespace Qnx {
43
45
namespace Internal {
44
46
 
56
58
        Source
57
59
    };
58
60
 
59
 
    explicit BarDescriptorEditor(BarDescriptorEditorWidget *editorWidget);
 
61
    BarDescriptorEditor();
60
62
 
61
63
    bool open(QString *errorString, const QString &fileName, const QString &realFileName);
62
64
    Core::IDocument *document();
63
 
    Core::Id id() const;
64
65
    QWidget *toolBar();
65
66
 
66
67
    EditorPage activePage() const;
67
68
 
68
69
private slots:
69
70
    void changeEditorPage(QAction *action);
 
71
    void updateCursorPosition();
70
72
 
71
73
private:
72
74
    void setActivePage(EditorPage page);
75
77
 
76
78
    QToolBar *m_toolBar;
77
79
    QActionGroup *m_actionGroup;
 
80
    Utils::LineColumnLabel *m_cursorPositionLabel;
 
81
    QAction *m_cursorPositionAction;
78
82
};
79
83
 
80
84
} // namespace Internal