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.
tdenetwork/ksirc/KSTicker/ksttest.cpp

94 lines
2.2 KiB

#include <kapplication.h>
#include <tdeconfig.h>
#include <tqapplication.h>
#include <tqsocketnotifier.h>
#include <tqregexp.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <klocale.h>
#include <unistd.h>
#include "ksticker.h"
#include "ksttest.h"
#include "../ksopts.h"
TDEConfig *kConfig;
StdInTicker::StdInTicker()
: KSTicker()
{
kConfig->setGroup("defaults");
TQFont font;
font = kConfig->readFontEntry("font");
font.setFixedPitch(TRUE);
setFont(font);
setSpeed(kConfig->readNumEntry("tick", 30),
kConfig->readNumEntry("step", 3));
}
StdInTicker::~StdInTicker()
{
int tick, step;
speed(&tick, &step);
kConfig->setGroup("defaults");
kConfig->writeEntry("font", KSTicker::font());
kConfig->writeEntry("tick", tick);
kConfig->writeEntry("step", step);
kConfig->writeEntry("text", colorGroup().text() );
kConfig->writeEntry("background", colorGroup().background() );
kConfig->sync();
}
void StdInTicker::readsocket(int socket)
{
char buf[1024];
int bytes = read(socket, buf, 1024);
if(bytes){
TQCString str(buf, bytes);
str.replace(TQRegExp("\n"), " // ");
mergeString(str);
}
}
void StdInTicker::end()
{
delete this;
}
void StdInTicker::closeEvent ( TQCloseEvent *e )
{
KSTicker::closeEvent(e);
delete this;
}
int main(int argc, char **argv){
TDEAboutData aboutData( "ksirc", I18N_NOOP("KSirc"),
"2.0.0", "", TDEAboutData::License_Artistic,
I18N_NOOP("(c) 1997-2002, Andrew Stanley-Jones"));
aboutData.addAuthor("Andrew Stanley-Jones",I18N_NOOP("Original Author"), "asj-ksirc@cban.com");
TDECmdLineArgs::init( argc, argv, &aboutData );
TDEApplication a(argc, argv);
kConfig = a.config();
// Options
KSOptions opts;
opts.load();
StdInTicker *kst = new StdInTicker();
TQSocketNotifier *sn = new TQSocketNotifier(0, TQSocketNotifier::Read);
TQObject::connect(sn, TQT_SIGNAL(activated(int)),
kst, TQT_SLOT(readsocket(int)));
TQObject::connect(kst, TQT_SIGNAL(doubleClick()), kst, TQT_SLOT(end()));
TQObject::connect(kst, TQT_SIGNAL(closing()), kst, TQT_SLOT(end()));
a.setMainWidget(kst);
kst->show();
return a.exec();
}
#include "ksttest.moc"