]> sigrok.org Git - pulseview.git/blob - mainwindow.cpp
Replaced mainwindow.ui XML with code
[pulseview.git] / mainwindow.cpp
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5  *
6  * This program 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 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program 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 this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 extern "C" {
22 #include <sigrokdecode.h>
23 }
24
25 #include <QAction>
26 #include <QApplication>
27 #include <QButtonGroup>
28 #include <QFileDialog>
29 #include <QMenu>
30 #include <QMenuBar>
31 #include <QStatusBar>
32 #include <QVBoxLayout>
33 #include <QWidget>
34
35 #include "about.h"
36 #include "mainwindow.h"
37 #include "samplingbar.h"
38 #include "sigview.h"
39
40 extern "C" {
41 /* __STDC_FORMAT_MACROS is required for PRIu64 and friends (in C++). */
42 #define __STDC_FORMAT_MACROS
43 #include <inttypes.h>
44 #include <stdint.h>
45 #include <stdarg.h>
46 #include <glib.h>
47 #include <libsigrok/libsigrok.h>
48 }
49
50 MainWindow::MainWindow(QWidget *parent) :
51         QMainWindow(parent)
52 {
53         setup_ui();
54 }
55
56 void MainWindow::setup_ui()
57 {
58         setObjectName(QString::fromUtf8("MainWindow"));
59
60         resize(1024, 768);
61
62         // Set the window icon
63         QIcon icon;
64         icon.addFile(QString::fromUtf8(":/icons/sigrok-logo-notext.png"),
65                 QSize(), QIcon::Normal, QIcon::Off);
66         setWindowIcon(icon);
67
68         // Setup the UI actions
69         _action_about = new QAction(this);
70         _action_about->setObjectName(QString::fromUtf8("actionAbout"));
71         _action_open = new QAction(this);
72         _action_open->setObjectName(QString::fromUtf8("actionOpen"));
73
74         // Setup the menu bar
75         _menu_bar = new QMenuBar(this);
76         _menu_bar->setGeometry(QRect(0, 0, 400, 25));
77
78         _menu_file = new QMenu(_menu_bar);
79         _menu_file->addAction(_action_open);
80
81         _menu_help = new QMenu(_menu_bar);
82         _menu_help->addAction(_action_about);
83
84         _menu_bar->addAction(_menu_file->menuAction());
85         _menu_bar->addAction(_menu_help->menuAction());
86
87         setMenuBar(_menu_bar);
88         QMetaObject::connectSlotsByName(this);
89
90         // Setup the toolbars
91         _sampling_bar = new SamplingBar(this);
92         connect(_sampling_bar, SIGNAL(run_stop()), this,
93                 SLOT(run_stop()));
94         addToolBar(_sampling_bar);
95
96         // Setup the central widget
97         _central_widget = new QWidget(this);
98         _vertical_layout = new QVBoxLayout(_central_widget);
99         _vertical_layout->setSpacing(6);
100         _vertical_layout->setContentsMargins(0, 0, 0, 0);
101         setCentralWidget(_central_widget);
102
103         // Setup the status bar
104         _status_bar = new QStatusBar(this);
105         setStatusBar(_status_bar);
106
107         setWindowTitle(QApplication::translate("MainWindow", "sigrok-qt2", 0, QApplication::UnicodeUTF8));
108         _action_open->setText(QApplication::translate("MainWindow", "&Open...", 0, QApplication::UnicodeUTF8));
109         _action_about->setText(QApplication::translate("MainWindow", "&About...", 0, QApplication::UnicodeUTF8));
110         _menu_file->setTitle(QApplication::translate("MainWindow", "&File", 0, QApplication::UnicodeUTF8));
111         _menu_help->setTitle(QApplication::translate("MainWindow", "&Help", 0, QApplication::UnicodeUTF8));
112
113         _view = new SigView(_session, this);
114         _vertical_layout->addWidget(_view);
115 }
116
117 void MainWindow::on_actionOpen_triggered()
118 {
119         QString file_name = QFileDialog::getOpenFileName(
120                 this, tr("Open File"), "",
121                 tr("Sigrok Sessions (*.sr)"));
122         _session.load_file(file_name.toStdString());
123 }
124
125 void MainWindow::on_actionAbout_triggered()
126 {
127         About dlg(this);
128         dlg.exec();
129 }
130
131 void MainWindow::run_stop()
132 {
133         _session.start_capture(
134                 _sampling_bar->get_selected_device(),
135                 _sampling_bar->get_record_length(),
136                 _sampling_bar->get_sample_rate());
137 }