-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmybutton.cpp
146 lines (129 loc) · 4.29 KB
/
mybutton.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#include "mybutton.h"
extern FILE_SYSTEM System;
myButton::myButton(string name,int isFolder,QWidget *parent): QPushButton(parent)
{
this->name=name;
this->isFolder=isFolder;
QDir temDir("../login/pic/folder.png");
QDir temDir2("../login/pic/txt.png");
QString filePath = temDir.absolutePath();
if(isFolder)this->setIcon(QIcon( temDir.absolutePath()));
else this->setIcon(QIcon( temDir2.absolutePath()));
this->setFixedSize(50,50);
this->setIconSize(QSize(50,50));
//添加右键目录
setContextMenuPolicy(Qt::DefaultContextMenu);
m_menu = new QMenu(this);
open = new QAction(this);
delet = new QAction(this);
rename = new QAction(this);
if(!isFolder) acc = new QAction(this);
if(!isFolder) copy=new QAction(this);//构造复制按钮
open->setText("open");
delet->setText("delete");
rename->setText("rename");
if(!isFolder) acc->setText("权限管理");
if(!isFolder) copy->setText("copy");
m_menu->addAction(open);
m_menu->addAction(delet);
m_menu->addAction(rename);
if(!isFolder) m_menu->addAction(acc);
if(!isFolder) m_menu->addAction(copy);
connect(open, SIGNAL(triggered()), this, SLOT(actionOpen()));
connect(delet, SIGNAL(triggered()), this, SLOT(actionDelete()));
connect(rename, SIGNAL(triggered()), this, SLOT(actionRename()));
if(!isFolder) connect(acc, SIGNAL(triggered()), this, SLOT(actionAcc()));
if(!isFolder) connect(copy,SIGNAL(triggered()),this,SLOT(actionCopy()));
}
myButton::~myButton()
{
}
void myButton::actionOpen()
{
if (isFolder) System.cd(name);
else {
int id=System.search(name,0);
if(id<0) return;
if(not System.Acces.access(System.username,id,"r")){
QMessageBox::warning(this, tr("Warning"),
tr("无读取权限!"),
QMessageBox::Yes);
return;
}
cout<<"open file:"<<id<<endl;
System.Files[id].load();
string end=".ink";
//int source=-1;
if(name.size()>end.size() && !name.compare(name.size()-end.size(),end.size(),end)){
int source = atoi(System.Files[id].Data.c_str());
if(!System.Files[source].isUsed()){
QMessageBox::warning(this, tr("Warning"),
tr("文件已丢失!"),
QMessageBox::Yes);
return;
}
Text w(id,source,true,System.Acces.access(System.username,id,"w"));
w.exec();
}
else{
Text w(id,System.Acces.access(System.username,id,"w"));
w.exec();
}
}
System.writelog("open file "+name);
qDebug() << "actionOne";
//this->click();
}
void myButton::actionDelete()
{
cout<<"check ghh:"<<endl;
int id=System.search(name,0);
cout<<"check ghh: "<<id<<endl;
if(not isFolder &¬ System.Acces.access(System.username,id,"w")){
QMessageBox::warning(this, tr("Warning"),
tr("无修改权限!"),
QMessageBox::Yes);
return;
}
System.delet(name,isFolder,System.Cur_folder);
System.writelog("delete file "+name);
qDebug() << "actionTwo";
this->click();
}
void myButton::actionRename()
{
int id=System.search(name,0);
if(not System.Acces.access(System.username,id,"w")){
QMessageBox::warning(this, tr("Warning"),
tr("无修改权限!"),
QMessageBox::Yes);
return;
}
System.writelog("rename file "+name);
qDebug() << "actionThree";
this->actionOpen();
this->click();
}
void myButton::actionAcc(){
int id=System.search(name,0);
System.Acces.load(id);
if(not System.Acces.access(System.username,id,"acc")){
QMessageBox::warning(this, tr("Warning"),
tr("无所有权限!"),
QMessageBox::Yes);
return;
}
System.writelog("change access "+name);
cout<<"ACC:"<<System.Acces.owner<<endl;
Acc w(id);
w.exec();
}
void myButton::actionCopy(){
int id=System.search(name,0);
System.clipBoard=id;
}
//右键弹出菜单
void myButton::contextMenuEvent(QContextMenuEvent *event)
{
m_menu->exec(QCursor::pos());
}