-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/LawPlusThree/QSyncUi
- Loading branch information
Showing
14 changed files
with
63 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ CMakeLists.txt.user | |
.vs | ||
CMakeUserPresets.json | ||
CMakePresets.json | ||
.vscode/settings.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include "linknewfolder_window.h" | ||
#include <QVBoxLayout> | ||
#include <QHBoxLayout> | ||
|
||
linkNewFolder_window::linkNewFolder_window(QWidget *parent) | ||
: ElaWidget(parent,600,400) | ||
{ | ||
this->setWindowTitle("珞珈云"); // 设置窗口标题 | ||
this->setWindowModality(Qt::ApplicationModal); // 设置窗口模态 | ||
this->hide(); // 初始隐藏当前窗口 | ||
this->setWindowFlags(Qt::WindowMinimizeButtonHint); // 设置窗口标志,允许最小化 | ||
QWidget*centerarea=new QWidget(); // 创建一个新的QWidget对象作为主区域 | ||
QVBoxLayout* centerVLayout = new QVBoxLayout(centerarea); // 为中心部件设置垂直布局 | ||
centerVLayout->setContentsMargins(0, 0, 0, 0); // 设置布局边距,5为到右边的距离 | ||
centerarea->setWindowTitle("链接新文件夹"); // 设置窗口标题 | ||
|
||
this->setCentralWidget(centerarea);// 将中心部件添加到窗口 | ||
} | ||
|
||
linkNewFolder_window::~linkNewFolder_window() | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef LINKNEWFOLDER_WINDOW_H | ||
#define LINKNEWFOLDER_WINDOW_H | ||
|
||
#include <QWidget> | ||
#include "ElaWidget.h" | ||
|
||
class linkNewFolder_window : public ElaWidget | ||
{ | ||
public: | ||
linkNewFolder_window(QWidget *parent = nullptr); | ||
~linkNewFolder_window(); | ||
|
||
}; | ||
|
||
#endif // LINKNEWFOLDER_WINDOW_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters