Skip to content
Snippets Groups Projects
Commit 06525131 authored by andrey.daragan's avatar andrey.daragan
Browse files

[-] Removed from the project too much. Renamed the KelvinGUI sibmodule in libdap-qt-ui-qml.

parent afc8b8e3
No related branches found
No related tags found
No related merge requests found
#include "DapUiQmlWidgetChainNodeLogs.h"
DapUiQmlWidgetChainNodeLogs::DapUiQmlWidgetChainNodeLogs()
{
}
#ifndef DAPUIQMLWIDGETCHAINNODELOGS_H
#define DAPUIQMLWIDGETCHAINNODELOGS_H
#include "DapUiQmlWidget.h"
class DapUiQmlWidgetChainNodeLogs : public DapUiQmlWidget
{
public:
DapUiQmlWidgetChainNodeLogs();
};
#endif // DAPUIQMLWIDGETCHAINNODELOGS_H
import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
id: dapUiQmlWidgetChainServicesClient
title: qsTr("Services client")
Text {
id: name
anchors.centerIn: parent
text: qsTr("Services client")
}
}
import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
id: dapUiQmlWidgetChainServicesShareControl
title: qsTr("Services share control")
Text {
id: name
anchors.centerIn: parent
text: qsTr("Services share control")
}
}
import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
id: dapUiQmlWidgetChainSettings
title: qsTr("Settings")
Text {
id: name
anchors.centerIn: parent
text: qsTr("Settings")
}
}
#include "DapUiQmlWidgetChainTransctions.h"
DapUiQmlWidgetChainTransctions::DapUiQmlWidgetChainTransctions()
{
}
#ifndef DAPUIQMLWIDGETCHAINTRANSCTIONS_H
#define DAPUIQMLWIDGETCHAINTRANSCTIONS_H
#include "DapUiQmlWidget.h"
class DapUiQmlWidgetChainTransctions : public DapUiQmlWidget
{
public:
DapUiQmlWidgetChainTransctions();
};
#endif // DAPUIQMLWIDGETCHAINTRANSCTIONS_H
import QtQuick 2.9
import QtQuick.Controls 2.2
Page {
id: dapUiQmlWidgetChainWallet
title: qsTr("Wallet")
Text {
id: name
anchors.centerIn: parent
text: qsTr("Wallet")
}
}
; This file can be edited to change the style of the application
; Read "Qt Quick Controls 2 Configuration File" for details:
; http://doc.qt.io/qt-5/qtquickcontrols2-configuration.html
[Controls]
Style=Default
QT += quick quick widgets quickwidgets
CONFIG += c++11
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
ICON = icon.ico
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
DapUiQmlWidget.cpp \
DapUiQmlWidgetChainBallance.cpp \
DapUiQmlScreenDialog.cpp \
DapUiQmlWidgeChainOperations.cpp \
DapUiQmlWidgetChainBlockExplorer.cpp \
DapUiQmlWidgetChainNodeLogs.cpp \
DapUiQmlWidgetChainTransctions.cpp
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Additional import path used to resolve QML modules just for Qt Quick Designer
QML_DESIGNER_IMPORT_PATH =
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
HEADERS += \
DapUiQmlWidget.h \
DapUiQmlWidgetChainBallance.h \
DapUiQmlScreenDialog.h \
DapUiQmlWidgeChainOperations.h \
DapUiQmlWidgetChainBlockExplorer.h \
DapUiQmlWidgetChainNodeLogs.h \
DapUiQmlWidgetChainTransctions.h \
DapUiQmlScreenDashboard.h
DISTFILES +=
#include <QApplication>
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QIcon>
#include <QSystemSemaphore>
#include <QSharedMemory>
/// Check for the existence of a running instance of the program.
/// @param systemSemaphore Semaphore for blocking shared resource.
/// @param memmoryApp Shared memory.
/// @param memmoryAppBagFix Shared memory for Linux system features.
/// @return If the application is running, it returns three, otherwise false.
bool checkExistenceRunningInstanceApp(QSystemSemaphore& systemSemaphore, QSharedMemory &memmoryApp, QSharedMemory &memmoryAppBagFix);
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
// Creating a semaphore for locking external resources, as well as initializing an external resource-memory
QSystemSemaphore systemSemaphore(QString("systemSemaphore for %1").arg("Kelvin"), 1);
#ifndef Q_OS_WIN
QSharedMemory memmoryAppBagFix(QString("memmory for %1").arg("Kelvin"));
#endif
QSharedMemory memmoryApp(QString("memmory for %1").arg("Kelvin"));
// Check for the existence of a running instance of the program
bool isRunning = checkExistenceRunningInstanceApp(systemSemaphore, memmoryApp, memmoryAppBagFix);
if(isRunning)
{
return 1;
}
QApplication app(argc, argv);
app.setOrganizationName("DEMLABS");
app.setOrganizationDomain("demlabs.com");
app.setApplicationName("Kelvin");
app.setWindowIcon(QIcon(":/Resources/Icons/icon.ico"));
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
return app.exec();
}
/// Check for the existence of a running instance of the program.
/// @param systemSemaphore Semaphore for blocking shared resource.
/// @param memmoryApp Shared memory.
/// @param memmoryAppBagFix Shared memory for Linux system features.
/// @return If the application is running, it returns three, otherwise false.
bool checkExistenceRunningInstanceApp(QSystemSemaphore& systemSemaphore, QSharedMemory &memmoryApp, QSharedMemory &memmoryAppBagFix)
{
systemSemaphore.acquire();
if(memmoryAppBagFix.attach())
{
memmoryAppBagFix.detach();
}
bool isRunning {false};
if (memmoryApp.attach())
{
isRunning = true;
}
else
{
memmoryApp.create(1);
isRunning = false;
}
systemSemaphore.release();
return isRunning;
}
import QtQuick 2.9
import QtQuick.Controls 1.4
import QtQuick.Controls 2.4
import QtQuick.Window 2.0
import QtQuick.Controls.Styles 1.4
import Qt.labs.platform 1.0
ApplicationWindow {
id: window
visible: true
width: 640
height: 480
SystemTrayIcon {
visible: true
iconName: "Kelvin"
iconSource: "qrc:/Resources/Icons/icon.ico"
tooltip: "Kelvin Dashboard"
menu: Menu {
MenuItem {
text: qsTr("Quit")
onTriggered: Qt.quit()
}
}
onActivated: {
if(reason === 1){
menu.open()
} else {
if(window.visibility === Window.Hidden) {
window.show()
window.raise()
window.requestActivate()
} else {
window.hide()
}
}
}
}
header: ToolBar {
contentHeight: buttomMenu.implicitHeight
ToolButton {
id: buttomMenu
text: stackView.depth > 1 ? "\u25C0" : "\u2630"
font.pixelSize: Qt.application.font.pixelSize * 1.6
onClicked: {
if (stackView.depth > 1) {
stackView.pop()
} else {
drawerMenu.open()
}
}
}
Label {
id: labelTitleWidget
text: stackView.currentItem.title
anchors.centerIn: parent
}
}
Drawer {
id: drawerMenu
width: window.width * 0.25
height: window.height
ListView {
id: listViewMenu
anchors.fill: parent
model: listModelMenu
DapUiQmlListModelWidgets {
id: listModelMenu
}
delegate:
Component {
id: listViewItemMenu
Item {
id: itemMenu
width: listViewMenu.width
height: textItemMenu.height + 10
Row {
anchors.margins: 5
anchors.fill: parent
Text
{
id: textItemMenu
text: qsTr(name)
}
}
MouseArea {
anchors.fill: parent
onClicked:
{
listViewMenu.currentIndex = index
stackView.push(Qt.resolvedUrl(page), StackView.Immediate)
drawerMenu.close()
}
}
}
}
highlight: Rectangle { color: "aliceblue"; radius: 5 }
focus: true
}
}
StackView {
id: stackView
initialItem: "DapUiQmlScreenDashboard.qml"
anchors.fill: parent
}
}
<RCC>
<qresource prefix="/">
<file>main.qml</file>
<file>DapUiQmlScreenDashboard.qml</file>
<file>DapUiQmlScreenMainWindow.ui.qml</file>
<file>kelvin.conf</file>
<file>DapUiQmlScreenLogin.ui.qml</file>
<file>DapUiQmlWidgetChainBlockExplorer.ui.qml</file>
<file>DapUiQmlWidgetChainExchanges.ui.qml</file>
<file>DapUiQmlWidgetChainServicesClient.ui.qml</file>
<file>DapUiQmlWidgetChainServicesShareControl.ui.qml</file>
<file>DapUiQmlWidgetChainSettings.ui.qml</file>
<file>DapUiQmlWidgetChainWallet.ui.qml</file>
<file>DapUiQmlScreenDialog.qml</file>
<file>Resources/Icons/icon.png</file>
<file>Resources/Icons/icon.ico</file>
<file>DapUiQmlListModelWidgets.qml</file>
<file>Resources/Icons/add.png</file>
</qresource>
</RCC>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment