]> sigrok.org Git - pulseview.git/blame - mainwindow.cpp
Replaced mainwindow.ui XML with code
[pulseview.git] / mainwindow.cpp
CommitLineData
d7bed479
JH
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
30236a54
JH
21extern "C" {
22#include <sigrokdecode.h>
23}
24
7d5425ef
JH
25#include <QAction>
26#include <QApplication>
27#include <QButtonGroup>
2953961c 28#include <QFileDialog>
7d5425ef
JH
29#include <QMenu>
30#include <QMenuBar>
31#include <QStatusBar>
32#include <QVBoxLayout>
33#include <QWidget>
2953961c 34
40eb2ff4 35#include "about.h"
d7bed479 36#include "mainwindow.h"
d4984fe7 37#include "samplingbar.h"
009e1503 38#include "sigview.h"
d7bed479 39
30236a54
JH
40extern "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
d7bed479 50MainWindow::MainWindow(QWidget *parent) :
7d5425ef 51 QMainWindow(parent)
d7bed479 52{
7d5425ef
JH
53 setup_ui();
54}
55
56void 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);
009e1503 80
7d5425ef
JH
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
d4984fe7 91 _sampling_bar = new SamplingBar(this);
274d4f13
JH
92 connect(_sampling_bar, SIGNAL(run_stop()), this,
93 SLOT(run_stop()));
d4984fe7
JH
94 addToolBar(_sampling_bar);
95
7d5425ef
JH
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);
d7bed479 102
7d5425ef
JH
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);
d7bed479 115}
30236a54 116
2953961c
JH
117void MainWindow::on_actionOpen_triggered()
118{
04abfae9 119 QString file_name = QFileDialog::getOpenFileName(
2953961c
JH
120 this, tr("Open File"), "",
121 tr("Sigrok Sessions (*.sr)"));
04abfae9 122 _session.load_file(file_name.toStdString());
2953961c
JH
123}
124
30236a54
JH
125void MainWindow::on_actionAbout_triggered()
126{
40eb2ff4
JH
127 About dlg(this);
128 dlg.exec();
30236a54 129}
274d4f13
JH
130
131void MainWindow::run_stop()
132{
04abfae9 133 _session.start_capture(
274d4f13 134 _sampling_bar->get_selected_device(),
215f9499 135 _sampling_bar->get_record_length(),
274d4f13
JH
136 _sampling_bar->get_sample_rate());
137}