Skip to content

Commit

Permalink
drag drop removed from config window. Until the functionality is comp…
Browse files Browse the repository at this point in the history
…lete

minor UI updates
project website added to about window
  • Loading branch information
Asitha committed Dec 20, 2013
1 parent 4b1fa76 commit 2035c68
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 17 deletions.
16 changes: 2 additions & 14 deletions NoobaFE/Forms/PluginsConfigUI.ui
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,9 @@
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="dragEnabled">
<property name="tabKeyNavigation">
<bool>true</bool>
</property>
<property name="dragDropMode">
<enum>QAbstractItemView::DragDrop</enum>
</property>
<property name="defaultDropAction">
<enum>Qt::MoveAction</enum>
</property>
<property name="alternatingRowColors">
<bool>true</bool>
</property>
Expand Down Expand Up @@ -153,15 +147,9 @@
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="dragEnabled">
<property name="tabKeyNavigation">
<bool>true</bool>
</property>
<property name="dragDropMode">
<enum>QAbstractItemView::DragDrop</enum>
</property>
<property name="defaultDropAction">
<enum>Qt::MoveAction</enum>
</property>
<property name="alternatingRowColors">
<bool>true</bool>
</property>
Expand Down
1 change: 1 addition & 0 deletions NoobaFE/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ void MainWindow::on_actionAbout_NoobaVSS_triggered()
"<p>Using OpenCV %6.%7 and Qt %8</p>"
"<p>Built on %9</p>"
"<p>Copyright (C) 2014 by the Nooba team. All rights reserved.</p>"
"<p>For more info visit us on <a href=\"http://www.noobavss.tk\" >www.noobavss.tk</a></p>"
"<p><b>NoobaVSS</b> 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 "
Expand Down
2 changes: 1 addition & 1 deletion NoobaFE/NoobaFE.pro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CONFIG(debug, debug|release): message(FE Debug build!)
CONFIG(release, debug|release): message(FE Release build!)

CONFIG(debug, debug|release): TARGET = NoobaVSS_Debug
CONFIG(release, debug|release): TARGET = NoobaVSS_Release
CONFIG(release, debug|release): TARGET = NoobaVSS

CONFIG(debug, debug|release): DESTDIR = ../../NoobaVSS_build/NoobaFE/Debug/
CONFIG(release, debug|release): DESTDIR = ../../NoobaVSS_build/NoobaFE/Release/
Expand Down
3 changes: 1 addition & 2 deletions NoobaFE/ParamConfigWind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ void ParamConfigWind::addPlugin(NoobaPlugin *plugin)
addToTree<StringListData* >(plugin->getStringListMap(), nooba::MultiValueParam, l1);
addToTree<FilePathData* >(plugin->getFilePathDataMap(), nooba::FilePathParam, l1);


l1->setBackground(0, QBrush(QColor(150,150,150)));
l1->setBackground(0, QBrush(QColor(50,140,200)));
l1->setForeground(0, QBrush(QColor(255,255,255)));
QFont font;
font.setBold(true);
Expand Down

0 comments on commit 2035c68

Please sign in to comment.