Renamed sample_blackgui -> swiftgui_standard and sample_blackcore -> swiftcore as discussed

This commit is contained in:
Klaus Basan
2014-08-03 01:56:04 +02:00
parent 18fe626db7
commit 34c9c5b7df
23 changed files with 13 additions and 37 deletions

View File

@@ -20,10 +20,12 @@ contains(BLACK_CONFIG, BlackSim) {
contains(BLACK_CONFIG, BlackCore) { contains(BLACK_CONFIG, BlackCore) {
SUBDIRS += src/blackcore SUBDIRS += src/blackcore
SUBDIRS += src/swiftcore/swiftcore.pro
} }
contains(BLACK_CONFIG, BlackGui) { contains(BLACK_CONFIG, BlackGui) {
SUBDIRS += src/blackgui SUBDIRS += src/blackgui
SUBDIRS += src/swiftgui_standard/swiftgui_standard.pro
} }
win32 { win32 {
@@ -50,9 +52,7 @@ contains(BLACK_CONFIG, Samples) {
SUBDIRS += samples/blackmiscvectorgeo/sample_vector_geo.pro SUBDIRS += samples/blackmiscvectorgeo/sample_vector_geo.pro
SUBDIRS += samples/blackmiscquantities/sample_quantities_aviation.pro SUBDIRS += samples/blackmiscquantities/sample_quantities_aviation.pro
SUBDIRS += samples/blackmiscdbus/sample_blackmisc_dbus.pro SUBDIRS += samples/blackmiscdbus/sample_blackmisc_dbus.pro
SUBDIRS += samples/blackgui/sample_blackgui.pro
SUBDIRS += samples/blackgui2/sample_blackgui2.pro SUBDIRS += samples/blackgui2/sample_blackgui2.pro
SUBDIRS += samples/blackcore/sample_blackcore.pro
SUBDIRS += samples/blackmisc/sample_blackmisc.pro SUBDIRS += samples/blackmisc/sample_blackmisc.pro
SUBDIRS += samples/voiceclient/sample_voice_client.pro SUBDIRS += samples/voiceclient/sample_voice_client.pro
SUBDIRS += samples/blacksim/sample_blacksim.pro SUBDIRS += samples/blacksim/sample_blacksim.pro

View File

@@ -1,5 +0,0 @@
<RCC>
<qresource prefix="/blackcore">
<file>icons/tower.png</file>
</qresource>
</RCC>

View File

@@ -1 +0,0 @@
IDI_ICON1 ICON DISCARDABLE "blackcore.ico"

View File

@@ -1,13 +0,0 @@
Starting: dbus-daemon.exe --session
- blocks CMD (sometimes daemon continues to run when pressing CTRL/C)
- does not start without directory session.d, i.e. ..\Qt\Qt5.1.0DBus\qtbase\etc\dbus-1\session.d
!!! The includes are set in the qmake file, there are the header files
!!! which are used in the interface
qdbuscpp2xml testservice.h -x blackmisc_cpp2xml.dll -o BlackMiscTest.Testservice.xml
qdbuscpp2xml datacontext.h -x blackmisc_cpp2xml.dll -o BlackMiscTest.Datacontext.xml
Set search path for plugins: env.var. QT_PLUGIN_PATH
Done automatically (qmake), but if required manually
Interface: qdbusxml2cpp blackbus.testservice.xml -p itestservice
Adaptor: qdbusxml2cpp blackbus.testservice.xml -a atestservice

View File

@@ -1,7 +1,11 @@
/* Copyright (C) 2013 VATSIM Community / authors /* Copyright (C) 2013
* This Source Code Form is subject to the terms of the Mozilla Public * swift Project Community / Contributors
* License, v. 2.0. If a copy of the MPL was not distributed with this *
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of Swift Project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
#include "tool.h" #include "tool.h"
#include "blackcore/context_runtime.h" #include "blackcore/context_runtime.h"

View File

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

@@ -32,8 +32,7 @@ DESTDIR = ../../bin
HEADERS += *.h HEADERS += *.h
SOURCES += *.cpp SOURCES += *.cpp
OTHER_FILES += readme.txt blackcore.rc blackcore.ico OTHER_FILES += swiftcore.ico swiftcore.rc
RESOURCES += win32: RC_FILE = swiftcore.rc
win32: RC_FILE = blackcore.rc
include (../../libraries.pri) include (../../libraries.pri)

View File

@@ -0,0 +1 @@
IDI_ICON1 ICON DISCARDABLE "swiftcore.ico"

View File

@@ -309,13 +309,6 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="4" column="3">
<widget class="QPushButton" name="pb_Foo">
<property name="text">
<string>Foo</string>
</property>
</widget>
</item>
<item row="1" column="1"> <item row="1" column="1">
<widget class="QPushButton" name="pb_MainTextMessages"> <widget class="QPushButton" name="pb_MainTextMessages">
<property name="sizePolicy"> <property name="sizePolicy">

View File

@@ -191,8 +191,6 @@ void MainWindow::initGuiSignals()
Q_ASSERT(connected); Q_ASSERT(connected);
connected = this->connect(this->ui->pb_MainKeypadOpacity100, SIGNAL(clicked()), this, SLOT(ps_changeWindowOpacity())); connected = this->connect(this->ui->pb_MainKeypadOpacity100, SIGNAL(clicked()), this, SLOT(ps_changeWindowOpacity()));
Q_ASSERT(connected); Q_ASSERT(connected);
connected = this->connect(this->ui->pb_Foo, SIGNAL(released()), this, SLOT(ps_setMainPage()));
Q_ASSERT(connected);
// Sound buttons // Sound buttons
this->connect(this->ui->pb_SoundMute, &QPushButton::clicked, this, &MainWindow::ps_setAudioVolumes); this->connect(this->ui->pb_SoundMute, &QPushButton::clicked, this, &MainWindow::ps_setAudioVolumes);