blob: e2bfb44a69cbfbd0a74b3c075811182de6c7771f (
plain)
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
|
/***************************************************************************
fmfpeditor.cpp - description
-------------------
begin : mer giu 4 2003
copyright : (C) 2003 by Gulmini Luciano
email : gulmini.luciano@student.unife.it
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "fmfpeditor.h"
#include <tqspinbox.h>
#include <tqlineedit.h>
#include <tqbuttongroup.h>
#include <tqregexp.h>
#include <kurlrequester.h>
#include <tqstringlist.h>
#include <kfiledialog.h>
#include <klocale.h>
//#include <kpreviewwidgetbase.h>
/*class PreviewWidget : public KPreviewWidgetBase {
};*/
fmFPeditor::fmFPeditor() : fmFPeditorS (){
sbLeft->setWrapping(true);
sbTop->setWrapping(true);
TQString htmlFiles = i18n("*.html *.htm|HTML Files");
TQString phpFiles = i18n("*.php|PHP Files");
TQString xmlFiles = i18n("*.xml|XML Files");
TQString xhtmlFiles = i18n("*xhtml|XHTML Files");
TQString allFiles = i18n("*|All Files");
fc->setFilter(htmlFiles+"\n"+phpFiles+"\n"+xmlFiles+"\n"+xhtmlFiles+"\n"+allFiles);
}
fmFPeditor::~fmFPeditor(){
}
TQString fmFPeditor::noresizeValue() {
switch(bgNoresize->id(bgNoresize->selected())){
case 0:return "";break;
default:return "noresize";
}
}
TQString fmFPeditor::scrollingValue() {
switch(bgScrolling->id(bgScrolling->selected())){
case 0:return "yes";break;
case 2:return "no";break;
default:return "auto";
}
}
TQString fmFPeditor::frameborderValue() {
switch(bgBorder->id(bgBorder->selected())){
case 1:return "0"; break;
default:return "1";
}
}
void fmFPeditor::setup(TQMap<TQString,TQString> m){
leId->setText(m["id"]);
fc->setURL(m["src"]);
leClass->setText(m["class"]);
leLongdesc->setText(m["longdesc"]);
leTitle->setText(m["title"]);
leStyle->setText(m["style"]);
leName->setText(m["name"]);
if(m["noresize"]!="noresize") bgNoresize->setButton(0);
else bgNoresize->setButton(1);
if(m["scrolling"]=="yes") bgScrolling->setButton(0);
else
if(m["scrolling"]=="no") bgScrolling->setButton(2);
if(m["frameborder"]=="0") bgBorder->setButton(1);
sbLeft->setValue(m["marginwidth"].toInt());
sbTop->setValue(m["marginheight"].toInt());
}
TQMap<TQString,TQString> fmFPeditor::attributeMap(){
TQMap<TQString,TQString> map;
map["name"] = leName->text();
map["longdesc"] = leLongdesc->text();
map["src"] = fc->url();
map["scrolling"] = scrollingValue();
map["id"] = leId->text();
map["style"] = leStyle->text();
map["title"] = leTitle->text();
map["class"] = leClass->text();
map["noresize"] = noresizeValue();
map["frameborder"] = frameborderValue();
map["marginwidth"] = TQString::number( sbLeft->value(),10 );
map["marginheight"] = TQString::number( sbTop->value(),10 );
return map;
}
#include "fmfpeditor.moc"
|