Skip to content

Commit

Permalink
Transferring repository from SVN
Browse files Browse the repository at this point in the history
  • Loading branch information
tkunic committed May 22, 2015
1 parent f445c0a commit 133e3e0
Show file tree
Hide file tree
Showing 25 changed files with 5,118 additions and 0 deletions.
3 changes: 3 additions & 0 deletions SimpleLabel.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
TEMPLATE = subdirs
SUBDIRS += SimpleLabel
SUBDIRS += SimpleLabelTests
37 changes: 37 additions & 0 deletions SimpleLabel/About.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/* SimpleLabel - a simple and light program for semi automatic labeling of regions
of interest on images or image sequences.
Developed at Laboratory for Active and Attentive Vision, York University, Toronto.
http://www.cse.yorku.ca/LAAV/home/ headed by John K. Tsotsos.
Copyright (C) 2010 Eugene Simine.
This program 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 3 of the License, or
any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
Contact: Eugene Simine <[email protected]> or
John K. Tsotsos <[email protected]>
*/
#include "About.h"


About::About(QWidget *parent, Qt::WindowFlags flags)
: QDialog(parent, flags)
{
ui.setupUi(this);

this->setWindowTitle(this->windowTitle() + " v" + QCoreApplication::applicationVersion());
}

About::~About(void)
{
}
44 changes: 44 additions & 0 deletions SimpleLabel/About.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/* SimpleLabel - a simple and light program for semi automatic labeling of regions
of interest on images or image sequences.
Developed at Laboratory for Active and Attentive Vision, York University, Toronto.
http://www.cse.yorku.ca/LAAV/home/ headed by John K. Tsotsos.
Copyright (C) 2010 Eugene Simine.
This program 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 3 of the License, or
any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
Contact: Eugene Simine <[email protected]> or
John K. Tsotsos <[email protected]>
*/
#ifndef ABOUT_H
#define ABOUT_H

#include <QtGui/QDialog>
#include "ui_AboutDlg.h"


class About :
public QDialog
{
Q_OBJECT

public:
About(QWidget *parent = 0, Qt::WindowFlags flags = 0);
virtual ~About(void);

private:
Ui::AboutDlg ui;
};

#endif
133 changes: 133 additions & 0 deletions SimpleLabel/AboutDlg.ui
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>AboutDlg</class>
<widget class="QDialog" name="AboutDlg">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>430</width>
<height>380</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>430</width>
<height>380</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>430</width>
<height>380</height>
</size>
</property>
<property name="windowTitle">
<string>SimpleLabel</string>
</property>
<property name="modal">
<bool>true</bool>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="0">
<spacer>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>108</width>
<height>31</height>
</size>
</property>
</spacer>
</item>
<item row="1" column="1">
<widget class="QPushButton" name="okButton">
<property name="text">
<string>OK</string>
</property>
</widget>
</item>
<item row="1" column="2">
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>101</width>
<height>31</height>
</size>
</property>
</spacer>
</item>
<item row="0" column="0" colspan="3">
<widget class="QPlainTextEdit" name="edtInfoText">
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Plain</enum>
</property>
<property name="lineWrapMode">
<enum>QPlainTextEdit::WidgetWidth</enum>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
<property name="plainText">
<string>SimpleLabel - a simple and light program for semi automatic labeling of regions of interest on images or image sequences.
Developed at Laboratory for Active and Attentive Vision, York University, Toronto.
http://www.cse.yorku.ca/LAAV/home/

Copyright (C) 2010 Eugene Simine.

This program 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 3 of the License, or
any later version.

This program 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 this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.

Contact: [email protected]</string>
</property>
<property name="overwriteMode">
<bool>false</bool>
</property>
<property name="backgroundVisible">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>okButton</sender>
<signal>clicked()</signal>
<receiver>AboutDlg</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>278</x>
<y>253</y>
</hint>
<hint type="destinationlabel">
<x>96</x>
<y>254</y>
</hint>
</hints>
</connection>
</connections>
</ui>
Loading

0 comments on commit 133e3e0

Please sign in to comment.