[pkg-boinc-commits] r366 - in trunk/kboincspy-cvs: debian
src/monitors src/monitors/sztaki src/panels src/panels/sztaki
src/panels/sztaki/workunit
Frank S. Thomas
fst-guest at costa.debian.org
Fri Feb 24 22:26:04 UTC 2006
Author: fst-guest
Date: 2006-02-24 22:26:02 +0000 (Fri, 24 Feb 2006)
New Revision: 366
Added:
trunk/kboincspy-cvs/src/monitors/Makefile.am
trunk/kboincspy-cvs/src/monitors/sztaki/
trunk/kboincspy-cvs/src/monitors/sztaki/Makefile.am
trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.cpp
trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.h
trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.cpp
trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.desktop
trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.h
trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.cpp
trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.h
trunk/kboincspy-cvs/src/panels/sztaki/
trunk/kboincspy-cvs/src/panels/sztaki/Makefile.am
trunk/kboincspy-cvs/src/panels/sztaki/workunit/
trunk/kboincspy-cvs/src/panels/sztaki/workunit/Makefile.am
trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitcontent.ui
trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanel.desktop
trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.cpp
trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.h
Modified:
trunk/kboincspy-cvs/debian/changelog
trunk/kboincspy-cvs/debian/control
trunk/kboincspy-cvs/debian/kboincspy-cvs-dev.install
trunk/kboincspy-cvs/debian/kboincspy-cvs.install
Log:
Last commit before tagging a new cvs snapshot.
Modified: trunk/kboincspy-cvs/debian/changelog
===================================================================
--- trunk/kboincspy-cvs/debian/changelog 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/debian/changelog 2006-02-24 22:26:02 UTC (rev 366)
@@ -1,6 +1,6 @@
-kboincspy-cvs (20060117-1) unstable; urgency=low
+kboincspy-cvs (20060224-1) unstable; urgency=low
- * New CVS snapshot from 17.01.2006. Happy New Year!
+ * New CVS snapshot from 24.02.2006. Happy New Year! :-)
* debian/control.in:
- Added an extra space before the "Homepage" pseudo field according to the
Developer's Reference, Section 6.2.4.
@@ -12,7 +12,7 @@
* Don't install upstream's AUTHOR, README and TODO files. They are unneeded
or duplicate information that is available elsewhere.
- -- Frank S. Thomas <frank at thomas-alfeld.de> Tue, 17 Jan 2006 23:52:10 +0100
+ -- Frank S. Thomas <frank at thomas-alfeld.de> Fri, 24 Feb 2006 22:50:52 +0100
kboincspy-cvs (20051118-1) unstable; urgency=low
Modified: trunk/kboincspy-cvs/debian/control
===================================================================
--- trunk/kboincspy-cvs/debian/control 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/debian/control 2006-02-24 22:26:02 UTC (rev 366)
@@ -2,7 +2,7 @@
Section: kde
Priority: optional
Maintainer: Frank S. Thomas <frank at thomas-alfeld.de>
-Build-Depends: cdbs (>= 0.4.23-1.1), build-essential, debhelper (>= 4.1.0), kdelibs4-dev (>= 4:3.3.0), xlibmesa-gl-dev, xlibmesa-glu-dev | libglu1-xorg-dev, docbook2x, docbook-xml, autoconf, automake1.9
+Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 4.1.0), kdelibs4-dev (>= 4:3.3.0), xlibmesa-gl-dev, xlibmesa-glu-dev | libglu1-xorg-dev, docbook2x, docbook-xml, autoconf, automake1.9
Standards-Version: 3.6.2
Package: kboincspy-cvs
Modified: trunk/kboincspy-cvs/debian/kboincspy-cvs-dev.install
===================================================================
--- trunk/kboincspy-cvs/debian/kboincspy-cvs-dev.install 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/debian/kboincspy-cvs-dev.install 2006-02-24 22:26:02 UTC (rev 366)
@@ -1,3 +1,2 @@
debian/tmp/usr/include usr
debian/tmp/usr/lib/*.la usr/lib
-debian/tmp/usr/lib/kde3/*.la usr/lib/kde3
Modified: trunk/kboincspy-cvs/debian/kboincspy-cvs.install
===================================================================
--- trunk/kboincspy-cvs/debian/kboincspy-cvs.install 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/debian/kboincspy-cvs.install 2006-02-24 22:26:02 UTC (rev 366)
@@ -1,4 +1,4 @@
debian/tmp/usr/bin usr
-debian/tmp/usr/lib/kde3/*.so usr/lib/kde3
+debian/tmp/usr/lib/kde3 usr/lib
debian/tmp/usr/share usr
debian/icons/kboincspy-*.xpm usr/share/pixmaps
Added: trunk/kboincspy-cvs/src/monitors/Makefile.am
===================================================================
--- trunk/kboincspy-cvs/src/monitors/Makefile.am 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/Makefile.am 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,10 @@
+if COMPILE_GL_SOURCES
+GL_MONITORS=predictor
+endif
+
+SUBDIRS = . ap cpdn einstein lhc seti simap sztaki $(GL_MONITORS)
+
+servicetype_DATA = kbsmonitor.desktop
+
+servicetypedir = $(kde_servicetypesdir)
+
Added: trunk/kboincspy-cvs/src/monitors/sztaki/Makefile.am
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/Makefile.am 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/Makefile.am 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,27 @@
+
+INCLUDES = $(KBSCORE_INCLUDES) $(all_includes)
+
+lib_LTLIBRARIES = libkbssztaki.la
+
+libkbssztaki_la_LDFLAGS = $(all_libraries) -release 0.9.2 -no-undefined
+libkbssztaki_la_LIBADD = $(LIB_KDECORE) $(LIB_KBSCORE)
+
+libkbssztaki_la_SOURCES = kbssztakidata.cpp
+
+kde_module_LTLIBRARIES = libkbssztakimonitor.la
+
+libkbssztakimonitor_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
+libkbssztakimonitor_la_LIBADD = $(LIB_KDECORE) $(LIB_KBSCORE) libkbssztaki.la
+
+libkbssztakimonitor_la_SOURCES = kbssztakimonitor.cpp kbssztakiplugin.cpp
+
+include_HEADERS = kbssztakidata.h kbssztakimonitor.h
+
+noinst_HEADERS = kbssztakiplugin.h
+
+METASOURCES = AUTO
+
+service_DATA = kbssztakimonitor.desktop
+
+servicedir = $(kde_servicesdir)
+
Added: trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.cpp
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.cpp 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.cpp 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,21 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#include "kbssztakidata.h"
Added: trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.h
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.h 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakidata.h 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,28 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#ifndef KBSSZTAKIDATA_H
+#define KBSSZTAKIDATA_H
+
+struct KBSSZTAKIResult
+{
+};
+
+#endif
Added: trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.cpp
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.cpp 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.cpp 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,74 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#include <kbsboincmonitor.h>
+
+#include "kbssztakimonitor.h"
+
+const QString KBSSZTAKICheckPointOpenName = "ckpt.txt";
+const QString KBSSZTAKIWorkunitOpenName = "in.txt";
+const QString KBSSZTAKIResultOpenName = "out.txt";
+
+KBSSZTAKIMonitor::KBSSZTAKIMonitor(const QString &project, KBSBOINCMonitor *parent, const char *name)
+ : KBSProjectMonitor(project, parent, name)
+{
+}
+
+bool KBSSZTAKIMonitor::parseFile(KBSFileInfo *file, const QString &fileName)
+{
+ qDebug("SZTAKI: Parsing file %s...", file->fileName.latin1());
+
+ const QString result = parseFileName(file->fileName);
+ if(!result.isEmpty())
+ {
+ }
+ else return false;
+
+ const KBSBOINCClientState *state = boincMonitor()->state();
+ if(NULL == state) return false;
+
+ const QString workunit = state->result[result].wu_name;
+ if(workunit.isEmpty()) return false;
+
+ //setResult(res, workunit);
+
+ qDebug("SZTAKI: ... parse OK");
+ return false;
+}
+
+KBSSZTAKIMonitor::~KBSSZTAKIMonitor()
+{
+}
+
+QString KBSSZTAKIMonitor::parseFileName(const QString &fileName)
+{
+ return QString::null;
+}
+
+QString KBSSZTAKIMonitor::formatFileName(const QString &result)
+{
+ return QString::null;
+}
+
+void KBSSZTAKIMonitor::updateFile(const QString &fileName)
+{
+}
+
+#include "kbssztakimonitor.moc"
Added: trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.desktop
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.desktop 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.desktop 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Encoding=UTF-8
+Type=Service
+Name=SZTAKI Desktop Grid Monitor
+X-KDE-Projects=szdg.lpds.sztaki.hu_szdg
+X-KDE-Library=libkbssztakimonitor
+ServiceTypes=KBSMonitor
Added: trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.h
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.h 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakimonitor.h 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,43 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#ifndef KBSSZTAKIMONITOR_H
+#define KBSSZTAKIMONITOR_H
+
+#include <kbsprojectmonitor.h>
+
+class KBSSZTAKIMonitor : public KBSProjectMonitor
+{
+ Q_OBJECT
+ public:
+ KBSSZTAKIMonitor(const QString &project, KBSBOINCMonitor *parent, const char *name=0);
+ virtual ~KBSSZTAKIMonitor();
+
+ protected:
+ virtual bool parseFile(KBSFileInfo *file, const QString &fileName);
+
+ static QString parseFileName(const QString &fileName);
+ static QString formatFileName(const QString &result);
+
+ private slots:
+ void updateFile(const QString &fileName);
+};
+
+#endif
Added: trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.cpp
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.cpp 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.cpp 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,62 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#include <kgenericfactory.h>
+
+#include <kbsboincmonitor.h>
+#include <kbsdocument.h>
+#include <kbsprojectmonitor.h>
+
+#include <kbssztakimonitor.h>
+
+#include "kbssztakiplugin.h"
+
+class KBSSZTAKIPluginFactory : KGenericFactory<KBSSZTAKIPlugin,KBSDocument>
+{
+ public:
+ KBSSZTAKIPluginFactory() : KGenericFactory<KBSSZTAKIPlugin,KBSDocument>("kbssztakimonitor") {};
+};
+
+K_EXPORT_COMPONENT_FACTORY(libkbssztakimonitor, KBSSZTAKIPluginFactory());
+
+KBSSZTAKIPlugin::KBSSZTAKIPlugin(KBSDocument *parent, const char *name, const QStringList &)
+ : KBSProjectPlugin(parent, name)
+{
+}
+
+KBSProjectMonitor *KBSSZTAKIPlugin::createProjectMonitor(const QString &project, KBSBOINCMonitor *parent)
+{
+ return new KBSSZTAKIMonitor(project, parent);
+}
+
+KBSTaskMonitor *KBSSZTAKIPlugin::createTaskMonitor(unsigned, KBSBOINCMonitor *)
+{
+ return NULL;
+}
+
+void KBSSZTAKIPlugin::readConfig(KConfig *)
+{
+}
+
+void KBSSZTAKIPlugin::writeConfig(KConfig *)
+{
+}
+
+#include "kbssztakiplugin.moc"
Added: trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.h
===================================================================
--- trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.h 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/monitors/sztaki/kbssztakiplugin.h 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,42 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#ifndef KBSSZTAKIPLUGIN_H
+#define KBSSZTAKIPLUGIN_H
+
+#include <qptrlist.h>
+#include <qstringlist.h>
+
+#include <kbsprojectplugin.h>
+
+class KBSSZTAKIPlugin : public KBSProjectPlugin
+{
+ Q_OBJECT
+ public:
+ KBSSZTAKIPlugin(KBSDocument *parent, const char *name, const QStringList &args);
+
+ virtual KBSProjectMonitor *createProjectMonitor(const QString &project, KBSBOINCMonitor *parent);
+ virtual KBSTaskMonitor *createTaskMonitor(unsigned task, KBSBOINCMonitor *parent);
+
+ virtual void readConfig(KConfig *config);
+ virtual void writeConfig(KConfig *config);
+};
+
+#endif
Added: trunk/kboincspy-cvs/src/panels/sztaki/Makefile.am
===================================================================
--- trunk/kboincspy-cvs/src/panels/sztaki/Makefile.am 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/panels/sztaki/Makefile.am 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,3 @@
+
+SUBDIRS = host user workunit
+
Added: trunk/kboincspy-cvs/src/panels/sztaki/workunit/Makefile.am
===================================================================
--- trunk/kboincspy-cvs/src/panels/sztaki/workunit/Makefile.am 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/panels/sztaki/workunit/Makefile.am 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,18 @@
+INCLUDES = $(KBSCORE_INCLUDES) $(KBSSZTAKI_INCLUDES) $(all_includes)
+
+kde_module_LTLIBRARIES = libkbssztakiworkunitpanel.la
+
+libkbssztakiworkunitpanel_la_LDFLAGS = $(all_libraries) -module
+libkbssztakiworkunitpanel_la_LIBADD = $(LIB_KDECORE) $(LIB_KBSCORE) $(LIB_KBSSZTAKI)
+
+libkbssztakiworkunitpanel_la_SOURCES = kbssztakiworkunitcontent.ui \
+ kbssztakiworkunitpanelnode.cpp
+
+noinst_HEADERS = kbssztakiworkunitpanelnode.h
+
+METASOURCES = AUTO
+
+service_DATA = kbssztakiworkunitpanel.desktop
+
+servicedir = $(kde_servicesdir)
+
Added: trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitcontent.ui
===================================================================
--- trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitcontent.ui 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitcontent.ui 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,79 @@
+<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
+<class>KBSOrbitWorkunitContent</class>
+<widget class="QWidget">
+ <property name="name">
+ <cstring>KBSOrbitWorkunitContent</cstring>
+ </property>
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>534</width>
+ <height>474</height>
+ </rect>
+ </property>
+ <property name="caption">
+ <string>KBSOrbitWorkunitContent</string>
+ </property>
+ <property name="iconText">
+ <string></string>
+ </property>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <property name="margin">
+ <number>0</number>
+ </property>
+ <widget class="KBSPanelField">
+ <property name="name">
+ <cstring>wu_name</cstring>
+ </property>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>16</width>
+ <height>20</height>
+ </size>
+ </property>
+ </spacer>
+ </vbox>
+</widget>
+<customwidgets>
+ <customwidget>
+ <class>KBSPanelField</class>
+ <header location="global">kbspanelfield.h</header>
+ <sizehint>
+ <width>0</width>
+ <height>0</height>
+ </sizehint>
+ <container>0</container>
+ <sizepolicy>
+ <hordata>5</hordata>
+ <verdata>5</verdata>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ <pixmap>image0</pixmap>
+ </customwidget>
+</customwidgets>
+<images>
+ <image name="image0">
+ <data format="PNG" length="1252">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b000004ab49444154388db595db6b5c551487bf33e7cc3d93cb4c6e93a449da1adbc6582fd552516b4bd1b60f165a10da07b1282822fe03822008fe0ba2a02f22fa262285d607915063087869ad84b44ecc4c9a4ce63ec99973e69c3373f6f2614c6aa84f82eb61b32f6b7ffc366badbdb4b9b939b6ed9df72f4a61dde2bfd8d0489c0fdefd52db5e6b7373737cf4c5ebb2309be7f2cb6f118bc6098763384e13dff711917f058908bef2719a4d72abcbacdecd92bb7b87a3c7d3bc71e963cd005898cdf3ea2b6f33393145b95ca45aab60e890e889f2e0741f189b38ad320dab4af6b646d30ce2da1144149ee71108187427fa181a98606136cb1b97403b71765cce9ebaccbebd0728143628950ba4d3291e7e7c92e420f85a01db5dc36d57f1da9b98568d42de24b798a0ba3684df162cab81e3b8d876935aad44a4bb815158b78845e394cb454ae502e3e3839c3977842de70e95c6afd4ed45dc5685402088a177a187a07fb44924b54475ad97dfbe3f48bb1d40441025689a4161ddc200088763546b152626873975769ac2d675b295afd9b4fea0bcd68bdfd2d134d00336fdc311628916007de91a33276ef1cbb787f03c1004ad83ec8c8ed3a42f19e7d49969cad63cb7f39f52297b2cfd384d299bdc15b450c467efe10afb8e7482da3b64b2e7d0068bf3c3f08f3807007cdf273510a5d1fa83d5ca15cac516bf5ebb1ffad8331a7ba6144b0b832ccd4f22aa935d23073688c43de4ef6cd9512c228cef0f51b76f526d64c8fc3445a316db053d717a2f4f3cdbcb66f30e4af22cff324632bd4972ac4624ee323859a352ecdead18400f9b58ee5dec5a8cc29ffdbba0275f38ccf3a79f26a87701c2a3278b04c36d567e1bddf1e91fdbdc756707ac190d94f210d1769e0830f3c838c79f7b1241e1b6ebd8cd2a3f7f97a4ede9f8ed00221ddfe4c8d6bf837de5113412048df8cee1d47492f3178f118c36b1bd3cb697c7f14cea8518221a9e1dc6312300bbc4ec02371a2e413d413cb4078081119d739726f0b522757b899af53bb67b97604871fcbc4977aa4d28a288f53411017b2bbc0b6c6c4fbcd62691904f32952035ece2b93e1ba56512dd064daf4abd5623927031f4187d7d614e5cb02816361001043632a9fb158b08eb390bdbdb400b369879cac6b11557bea8f0677689eb57b7b8fa7982b58c41dbd3012114afd39b2e210a7c5fa3e5e9f7837de5b3bad445a5bec29693a1776c99675e5ac4b115d73eeb277333816beb5cff3ac5e24f8a869ba3e1aca214285f689a618a2b7d20c2f667d8a9bc6613d30c925d8c317a280f40300ac72edc20772b4ddb330804749412423d252ca786f241294129d00c8fe9676ff3c357e38852f7c0b9d565020183fcdc28adb6cdf8431d7828e2f2c0932b681a3b4a4441bbd5018aeaec1bbaa27bb0c1e423457efebe13367de6f181f72c53210a5a2d9f62b69bcd528c50b445b4cb45a403500ac4075f81f2a1ba9e606d69809e010bc7d1d9c874b19609532d79a4868c4e0779edcd17656860826824812841101018de6bd297b619d9dfa92a1128e6ba28af75515849a0dab0e76095d4d816999b31d6731ef59ac9271f7ed3e920478fa75998cdd2d33584a6193b5fdfd60d0d6ec4817b4573cf2c44e0d67c9060348ad7f2304d93a1918eaff67f35d3bf00a1326eeaf69ebeb80000000049454e44ae426082</data>
+ </image>
+</images>
+<layoutdefaults spacing="6" margin="11"/>
+<includehints>
+ <includehint>kbspanelfield.h</includehint>
+</includehints>
+</UI>
Added: trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanel.desktop
===================================================================
--- trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanel.desktop 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanel.desktop 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Encoding=UTF-8
+Type=Service
+Name=Workunit Panel for orbit at home
+X-KDE-Projects=orbit.psi.edu
+X-KDE-Target=Workunit
+X-KDE-Library=libkbsorbitworkunitpanel
+ServiceTypes=KBSPanelNode
Added: trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.cpp
===================================================================
--- trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.cpp 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.cpp 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,19 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
Added: trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.h
===================================================================
--- trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.h 2006-02-22 14:28:27 UTC (rev 365)
+++ trunk/kboincspy-cvs/src/panels/sztaki/workunit/kbssztakiworkunitpanelnode.h 2006-02-24 22:26:02 UTC (rev 366)
@@ -0,0 +1,19 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Frank S. Thomas *
+ * frank at thomas-alfeld.de *
+ * *
+ * 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. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
More information about the pkg-boinc-commits
mailing list