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
|
#include <kmessagebox.h>
#include <kdebug.h>
#include <kshortcut.h>
#include <kexidb/cursor.h>
#include "kexipart.h"
#include "kexipartmanager.h"
#include "kexiproject.h"
#include "keximainwindow.h"
#include "kexiuseraction.h"
KexiUserAction::KexiUserAction(KexiMainWindow *win, TDEActionCollection *parent, const TQString &name, const TQString &text, const TQString &pixmap)
: TDEAction(text, pixmap, TDEShortcut::null(), this, TQT_SLOT(execute()), parent, name.latin1())
{
m_win = win;
m_method = 0;
connect(this, TQT_SIGNAL(activated()), this, TQT_SLOT(execute()));
}
void
KexiUserAction::setMethod(int method, Arguments args)
{
m_method = method;
m_args = args;
}
void
KexiUserAction::execute()
{
kdDebug() << "KexiUserAction::execute(): " << KexiUserActionMethod::methodName(m_method) << endl;
switch(m_method)
{
case OpenObject: //open a project object
{
//get partinfo
KexiPart::Info *i = Kexi::partManager().infoForMimeType(m_args[0].toString().latin1());
if (!i) {
KMessageBox::error(m_win, i18n("Specified part does not exist"));
return;
}
Kexi::partManager().part(i); //load part if doesn't exists
KexiPart::Item *item = m_win->project()->item(i, m_args[1].toString());
bool openingCancelled;
if(!m_win->openObject(item, Kexi::DataViewMode, openingCancelled) && !openingCancelled) {
KMessageBox::error(m_win, i18n("Specified document could not be opened."));
return;
}
if (openingCancelled)
return;
break;
}
default:
break;
}
}
KexiUserAction *
KexiUserAction::fromCurrentRecord(KexiMainWindow *context, TDEActionCollection *parent, KexiDB::Cursor *c)
{
if(!c || c->bof() || c->eof())
return 0;
KexiUserAction *a = new KexiUserAction(context, parent, c->value(1).toString(), c->value(2).toString(), c->value(3).toString());
TQString args = c->value(5).toString();
bool quote = false;
Arguments arg;
TQString tmp;
const int len = args.length();
for(int i=0; i < len; i++)
{
if(args[i] == '"') // if current char is quoted unqote or other way round
{
quote = !quote;
}
else if(args[i] == ',' && !quote) //if item end add tmp to argumentstack and strip quotes if nessesery
{
if(tmp.left(1)=="\"" && tmp.right(1)=="\"")
tmp = tmp.mid(1, tmp.length()-2);
arg.append(TQVariant(tmp));
tmp = "";
}
else //else simply add char to tmp
{
tmp += args[i];
}
}
if(tmp.left(1)=="\"" && tmp.right(1)=="\"")
tmp = tmp.mid(1, tmp.length()-2);
arg.append(TQVariant(tmp));
a->setMethod(c->value(4).toInt(), arg);
return a;
}
KexiUserAction::~KexiUserAction()
{
}
#include "kexiuseraction.moc"
|