You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.5 KiB
112 lines
3.5 KiB
/***************************************************************************
|
|
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"
|