Skip to content

Commit d5f1e82

Browse files
committed
1.创建版本
0 parents  commit d5f1e82

249 files changed

Lines changed: 61960 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Debug/libmysql.dll

5.22 MB
Binary file not shown.

MySQLConfig.sln

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30907.101
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MySQLConfig", "MySQLConfig\MySQLConfig.vcxproj", "{1A60E919-215B-4C76-836B-164B9B82CD22}"
7+
EndProject
8+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MySQLD", "MySQLD\MySQLD.vcxproj", "{5590782E-39BC-4B13-B510-C170279A7AC2}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|x64 = Debug|x64
13+
Debug|x86 = Debug|x86
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{1A60E919-215B-4C76-836B-164B9B82CD22}.Debug|x64.ActiveCfg = Debug|Win32
19+
{1A60E919-215B-4C76-836B-164B9B82CD22}.Debug|x86.ActiveCfg = Debug|Win32
20+
{1A60E919-215B-4C76-836B-164B9B82CD22}.Debug|x86.Build.0 = Debug|Win32
21+
{1A60E919-215B-4C76-836B-164B9B82CD22}.Release|x64.ActiveCfg = Release|Win32
22+
{1A60E919-215B-4C76-836B-164B9B82CD22}.Release|x86.ActiveCfg = Release|Win32
23+
{1A60E919-215B-4C76-836B-164B9B82CD22}.Release|x86.Build.0 = Release|Win32
24+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Debug|x64.ActiveCfg = Debug|x64
25+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Debug|x64.Build.0 = Debug|x64
26+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Debug|x86.ActiveCfg = Debug|Win32
27+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Debug|x86.Build.0 = Debug|Win32
28+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Release|x64.ActiveCfg = Release|x64
29+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Release|x64.Build.0 = Release|x64
30+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Release|x86.ActiveCfg = Release|Win32
31+
{5590782E-39BC-4B13-B510-C170279A7AC2}.Release|x86.Build.0 = Release|Win32
32+
EndGlobalSection
33+
GlobalSection(SolutionProperties) = preSolution
34+
HideSolutionNode = FALSE
35+
EndGlobalSection
36+
GlobalSection(ExtensibilityGlobals) = postSolution
37+
SolutionGuid = {4820F74A-F057-4972-B52E-CADDB76194B2}
38+
EndGlobalSection
39+
EndGlobal

MySQLConfig.v12.suo

31 KB
Binary file not shown.

MySQLConfig/MenuItem.cpp

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#include "menuitem.h"
2+
3+
MenuItem::MenuItem(int menuId, const QString &menuName, bool isChecked)
4+
{
5+
this->menuId = menuId;
6+
this->menuName = menuName;
7+
this->isChecked = isChecked;
8+
}
9+
10+
MenuItem::MenuItem()
11+
{
12+
this->menuId = -1;
13+
this->menuName = QString("");
14+
this->isChecked = false;
15+
}
16+
17+
MenuItem::MenuItem(const MenuItem &menuItem)
18+
{
19+
this->menuId = menuItem.getMenuId();
20+
this->menuName = menuItem.getMenuName();
21+
this->isChecked = menuItem.getIsChecked();
22+
}
23+
24+
int MenuItem::getMenuId() const
25+
{
26+
return menuId;
27+
}
28+
29+
void MenuItem::setMenuId(int value)
30+
{
31+
menuId = value;
32+
}
33+
34+
QString MenuItem::getMenuName() const
35+
{
36+
return menuName;
37+
}
38+
39+
void MenuItem::setMenuName(const QString &value)
40+
{
41+
menuName = value;
42+
}
43+
44+
bool MenuItem::getIsChecked() const
45+
{
46+
return isChecked;
47+
}
48+
49+
void MenuItem::setIsChecked(bool value)
50+
{
51+
isChecked = value;
52+
}
53+

MySQLConfig/MySQL.ICO

12.6 KB
Binary file not shown.

MySQLConfig/MySQL32.ICO

3.19 KB
Binary file not shown.

0 commit comments

Comments
 (0)