blob: e5dc2df503ada2ab6930494db95577d5b97c556f (
plain)
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
|
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_LICENSE$
**
****************************************************************************/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "ui_schema.h"
//! [0]
class MainWindow : public QMainWindow,
private Ui::SchemaMainWindow
{
Q_OBJECT
public:
MainWindow();
private Q_SLOTS:
void schemaSelected(int index);
void instanceSelected(int index);
void validate();
void textChanged();
private:
void moveCursor(int line, int column);
};
//! [0]
#endif
|