summaryrefslogtreecommitdiff
path: root/client/mainwindow.cc
blob: 3a0eeabd4caa4cf73ed88a956f774a8e8f7487bc (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            mainwindow.cc
 *
 *  Sat Aug 21 19:49:34 2004
 *  Copyright  2004  deva
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *    This file is part of MIaV.
 *
 *    MIaV is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    MIaV is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with MIaV; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include <config.h>

#include "mainwindow.h"
#include "info.h"
#include "miav_config.h"
#include "splashscreen.h"
#include "aboutwindow.h"

#include <QGridLayout>

#include "videowidget.h"
#include "historyframe.h"
#include "historywidget.h"

// Macro for creating buttons
static QPushButton *createButton(char* icon)
{
  QPixmap pixmap(icon);

  Qt::AspectRatioMode aspect =  pixmap.width()<pixmap.height()?
    Qt::KeepAspectRatio:Qt::KeepAspectRatioByExpanding;

  pixmap = pixmap.scaled(50, 50, aspect, Qt::SmoothTransformation);
  QPushButton *btn = new QPushButton();
  btn->setIconSize(pixmap.size());
  btn->setIcon(pixmap);

  return btn;
}

MainWindow::MainWindow(): QWidget()
{
  MIaV::info->log("Starting MIaV v. %s.", VERSION);

  // Create the overlaying splashscreen
  //  SplashScreen splash;

  // Create layout
  QGridLayout *layout = new QGridLayout(this);
  setLayout(layout);

  // Create the videoarea
  VideoWidget *video = new VideoWidget();
  layout->addWidget(video, 0,0, 1,4);

  // Create the control buttons
  QPushButton *button;

  button = createButton(PIXMAP_CPR);
  layout->addWidget(button, 1,3, 1,1);
  connect(button, SIGNAL(clicked()), this, SLOT(cpr_clicked()));

  button = createButton(PIXMAP_RECORD);
  layout->addWidget(button, 2,0, 1,1);
  connect(button, SIGNAL(clicked()), this, SLOT(record_clicked()));

  button = createButton(PIXMAP_SNAPSHOT);
  layout->addWidget(button, 2,1, 1,1);
  connect(button, SIGNAL(clicked()), this, SLOT(snapshot_clicked()));

  button = createButton(PIXMAP_FREEZE);
  layout->addWidget(button, 2,2, 1,1);
  connect(button, SIGNAL(clicked()), this, SLOT(freeze_clicked()));

  button = createButton(PIXMAP_MUTE);
  layout->addWidget(button, 2,3, 1,1);
  connect(button, SIGNAL(clicked()), this, SLOT(mute_clicked()));

  // Create history bar
  HistoryFrame *frame = new HistoryFrame();
  layout->addWidget(frame, 0,4, 3,1);
  frame->addHistoryItem(new HistoryWidget());
  frame->addHistoryItem(new HistoryWidget());
  frame->addHistoryItem(new HistoryWidget());


  // Create statusbar

  show();
  //  setWindowState(Qt::WindowFullScreen);

  MIaV::info->log("MIaV is ready.");
}

MainWindow::~MainWindow()
{
  MIaV::info->log("MIaV is shutting down.");

  MIaV::info->log("MIaV is shut down.");
}

void MainWindow::about_clicked()
{
  AboutWindow about;
  about.exec();
}

void MainWindow::clear_clicked()
{
}

void MainWindow::cpr_clicked()
{
}

void MainWindow::rec_clicked()
{
}

void MainWindow::shoot_clicked()
{
}

void MainWindow::freeze_clicked()
{
}

void MainWindow::mute_clicked()
{
}