Skip to content

Commit

Permalink
src:update main window ui
Browse files Browse the repository at this point in the history
Signed-off-by: xiaoiming <2014500726@smail.xtu.edu.cn>
  • Loading branch information
QQxiaoming committed Dec 6, 2023
1 parent 816dcb8 commit de7e8aa
Show file tree
Hide file tree
Showing 57 changed files with 10,976 additions and 109 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
- name: Install prerequisites
run: |
sudo apt update
sudo apt install -y make gcc patchelf chrpath qt5-default libxcb-cursor0
sudo apt install -y make gcc patchelf chrpath qt5-default libxcb-cursor0 build-essential libgtk-3-dev
- name: build fcitx_qt6
run: |
cd depend
Expand Down
25 changes: 25 additions & 0 deletions lib/QGoodWindow/QGoodCentralWidget/QGoodCentralWidget
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
The MIT License (MIT)

Copyright © 2022-2023 Antonio Dias (https://github.com/antonypro)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

#include "src/qgoodcentralwidget.h"
54 changes: 54 additions & 0 deletions lib/QGoodWindow/QGoodCentralWidget/QGoodCentralWidget.pri
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
#The MIT License (MIT)

#Copyright © 2022-2023 Antonio Dias (https://github.com/antonypro)

#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software, and to permit persons to whom the Software is
#furnished to do so, subject to the following conditions:

#The above copyright notice and this permission notice shall be included in all
#copies or substantial portions of the Software.

#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
#SOFTWARE.

QT += core gui widgets

CONFIG += c++11

SOURCES += \
$$PWD/src/qgoodcentralwidget.cpp

HEADERS += \
$$PWD/src/qgoodcentralwidget.h

INCLUDEPATH += $$PWD #include <QGoodCentralWidget>

DEFINES += QGOODCENTRALWIDGET

qgoodwindow {
QT += svg

SOURCES += \
$$PWD/src/captionbutton.cpp \
$$PWD/src/iconwidget.cpp \
$$PWD/src/titlebar.cpp \
$$PWD/src/titlewidget.cpp

HEADERS += \
$$PWD/src/captionbutton.h \
$$PWD/src/iconwidget.h \
$$PWD/src/titlebar.h \
$$PWD/src/titlewidget.h

RESOURCES += \
$$PWD/src/qgoodcentralwidget_icons.qrc
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
The MIT License (MIT)
Copyright © 2023 Antonio Dias (https://github.com/antonypro)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

#ifndef QGOODCENTRALWIDGET_GLOBAL_H
#define QGOODCENTRALWIDGET_GLOBAL_H

#include "qgoodcentralwidget_helper.h"

#endif // QGOODCENTRALWIDGET_GLOBAL_H
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
The MIT License (MIT)
Copyright © 2023 Antonio Dias (https://github.com/antonypro)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

#ifndef QGOODCENTRALWIDGET_GLOBAL_H
#define QGOODCENTRALWIDGET_GLOBAL_H

#ifndef QGOODCENTRALWIDGET
#define QGOODCENTRALWIDGET
#endif

#endif // QGOODCENTRALWIDGET_GLOBAL_H
Loading

0 comments on commit de7e8aa

Please sign in to comment.