commit
747d40114c
@ -0,0 +1,6 @@
|
|||||||
|
[submodule "admin"]
|
||||||
|
path = admin
|
||||||
|
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-admin
|
||||||
|
[submodule "cmake"]
|
||||||
|
path = cmake
|
||||||
|
url = http://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
|
@ -0,0 +1,167 @@
|
|||||||
|
Basic Installation
|
||||||
|
==================
|
||||||
|
|
||||||
|
These are generic installation instructions.
|
||||||
|
|
||||||
|
The `configure' shell script attempts to guess correct values for
|
||||||
|
various system-dependent variables used during compilation. It uses
|
||||||
|
those values to create a `Makefile' in each directory of the package.
|
||||||
|
It may also create one or more `.h' files containing system-dependent
|
||||||
|
definitions. Finally, it creates a shell script `config.status' that
|
||||||
|
you can run in the future to recreate the current configuration, a file
|
||||||
|
`config.cache' that saves the results of its tests to speed up
|
||||||
|
reconfiguring, and a file `config.log' containing compiler output
|
||||||
|
(useful mainly for debugging `configure').
|
||||||
|
|
||||||
|
If you need to do unusual things to compile the package, please try
|
||||||
|
to figure out how `configure' could check whether to do them, and mail
|
||||||
|
diffs or instructions to the address given in the `README' so they can
|
||||||
|
be considered for the next release. If at some point `config.cache'
|
||||||
|
contains results you don't want to keep, you may remove or edit it.
|
||||||
|
|
||||||
|
The file `configure.in' is used to create `configure' by a program
|
||||||
|
called `autoconf'. You only need `configure.in' if you want to change
|
||||||
|
it or regenerate `configure' using a newer version of `autoconf'.
|
||||||
|
|
||||||
|
The simplest way to compile this package is:
|
||||||
|
|
||||||
|
1. `cd' to the directory containing the package's source code and type
|
||||||
|
`./configure' to configure the package for your system. If you're
|
||||||
|
using `csh' on an old version of System V, you might need to type
|
||||||
|
`sh ./configure' instead to prevent `csh' from trying to execute
|
||||||
|
`configure' itself.
|
||||||
|
|
||||||
|
Running `configure' takes a while. While running, it prints some
|
||||||
|
messages telling which features it is checking for.
|
||||||
|
|
||||||
|
2. Type `make' to compile the package.
|
||||||
|
|
||||||
|
3. Type `make install' to install the programs and any data files and
|
||||||
|
documentation.
|
||||||
|
|
||||||
|
4. You can remove the program binaries and object files from the
|
||||||
|
source code directory by typing `make clean'.
|
||||||
|
|
||||||
|
Compilers and Options
|
||||||
|
=====================
|
||||||
|
|
||||||
|
Some systems require unusual options for compilation or linking that
|
||||||
|
the `configure' script does not know about. You can give `configure'
|
||||||
|
initial values for variables by setting them in the environment. Using
|
||||||
|
a Bourne-compatible shell, you can do that on the command line like
|
||||||
|
this:
|
||||||
|
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
|
||||||
|
|
||||||
|
Or on systems that have the `env' program, you can do it like this:
|
||||||
|
env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
|
||||||
|
|
||||||
|
Compiling For Multiple Architectures
|
||||||
|
====================================
|
||||||
|
|
||||||
|
You can compile the package for more than one kind of computer at the
|
||||||
|
same time, by placing the object files for each architecture in their
|
||||||
|
own directory. To do this, you must use a version of `make' that
|
||||||
|
supports the `VPATH' variable, such as GNU `make'. `cd' to the
|
||||||
|
directory where you want the object files and executables to go and run
|
||||||
|
the `configure' script. `configure' automatically checks for the
|
||||||
|
source code in the directory that `configure' is in and in `..'.
|
||||||
|
|
||||||
|
If you have to use a `make' that does not supports the `VPATH'
|
||||||
|
variable, you have to compile the package for one architecture at a time
|
||||||
|
in the source code directory. After you have installed the package for
|
||||||
|
one architecture, use `make distclean' before reconfiguring for another
|
||||||
|
architecture.
|
||||||
|
|
||||||
|
Installation Names
|
||||||
|
==================
|
||||||
|
|
||||||
|
By default, `make install' will install the package's files in
|
||||||
|
`/usr/local/bin', `/usr/local/man', etc. You can specify an
|
||||||
|
installation prefix other than `/usr/local' by giving `configure' the
|
||||||
|
option `--prefix=PATH'.
|
||||||
|
|
||||||
|
You can specify separate installation prefixes for
|
||||||
|
architecture-specific files and architecture-independent files. If you
|
||||||
|
give `configure' the option `--exec-prefix=PATH', the package will use
|
||||||
|
PATH as the prefix for installing programs and libraries.
|
||||||
|
Documentation and other data files will still use the regular prefix.
|
||||||
|
|
||||||
|
If the package supports it, you can cause programs to be installed
|
||||||
|
with an extra prefix or suffix on their names by giving `configure' the
|
||||||
|
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
||||||
|
|
||||||
|
Optional Features
|
||||||
|
=================
|
||||||
|
|
||||||
|
Some packages pay attention to `--enable-FEATURE' options to
|
||||||
|
`configure', where FEATURE indicates an optional part of the package.
|
||||||
|
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
||||||
|
is something like `gnu-as' or `x' (for the X Window System). The
|
||||||
|
`README' should mention any `--enable-' and `--with-' options that the
|
||||||
|
package recognizes.
|
||||||
|
|
||||||
|
For packages that use the X Window System, `configure' can usually
|
||||||
|
find the X include and library files automatically, but if it doesn't,
|
||||||
|
you can use the `configure' options `--x-includes=DIR' and
|
||||||
|
`--x-libraries=DIR' to specify their locations.
|
||||||
|
|
||||||
|
Specifying the System Type
|
||||||
|
==========================
|
||||||
|
|
||||||
|
There may be some features `configure' can not figure out
|
||||||
|
automatically, but needs to determine by the type of host the package
|
||||||
|
will run on. Usually `configure' can figure that out, but if it prints
|
||||||
|
a message saying it can not guess the host type, give it the
|
||||||
|
`--host=TYPE' option. TYPE can either be a short name for the system
|
||||||
|
type, such as `sun4', or a canonical name with three fields:
|
||||||
|
CPU-COMPANY-SYSTEM
|
||||||
|
|
||||||
|
See the file `config.sub' for the possible values of each field. If
|
||||||
|
`config.sub' isn't included in this package, then this package doesn't
|
||||||
|
need to know the host type.
|
||||||
|
|
||||||
|
If you are building compiler tools for cross-compiling, you can also
|
||||||
|
use the `--target=TYPE' option to select the type of system they will
|
||||||
|
produce code for and the `--build=TYPE' option to select the type of
|
||||||
|
system on which you are compiling the package.
|
||||||
|
|
||||||
|
Sharing Defaults
|
||||||
|
================
|
||||||
|
|
||||||
|
If you want to set default values for `configure' scripts to share,
|
||||||
|
you can create a site shell script called `config.site' that gives
|
||||||
|
default values for variables like `CC', `cache_file', and `prefix'.
|
||||||
|
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
||||||
|
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||||
|
`CONFIG_SITE' environment variable to the location of the site script.
|
||||||
|
A warning: not all `configure' scripts look for a site script.
|
||||||
|
|
||||||
|
Operation Controls
|
||||||
|
==================
|
||||||
|
|
||||||
|
`configure' recognizes the following options to control how it
|
||||||
|
operates.
|
||||||
|
|
||||||
|
`--cache-file=FILE'
|
||||||
|
Use and save the results of the tests in FILE instead of
|
||||||
|
`./config.cache'. Set FILE to `/dev/null' to disable caching, for
|
||||||
|
debugging `configure'.
|
||||||
|
|
||||||
|
`--help'
|
||||||
|
Print a summary of the options to `configure', and exit.
|
||||||
|
|
||||||
|
`--quiet'
|
||||||
|
`--silent'
|
||||||
|
`-q'
|
||||||
|
Do not print messages saying which checks are being made.
|
||||||
|
|
||||||
|
`--srcdir=DIR'
|
||||||
|
Look for the package's source code in directory DIR. Usually
|
||||||
|
`configure' can determine that directory automatically.
|
||||||
|
|
||||||
|
`--version'
|
||||||
|
Print the version of Autoconf used to generate the `configure'
|
||||||
|
script, and exit.
|
||||||
|
|
||||||
|
`configure' also accepts some other, not widely useful, options.
|
||||||
|
|
@ -0,0 +1,22 @@
|
|||||||
|
SUBDIRS = $(TOPSUBDIRS)
|
||||||
|
|
||||||
|
$(top_srcdir)/configure.in: configure.in.in $(top_srcdir)/subdirs
|
||||||
|
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in ;
|
||||||
|
|
||||||
|
$(top_srcdir)/subdirs:
|
||||||
|
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs
|
||||||
|
|
||||||
|
$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in
|
||||||
|
@cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4
|
||||||
|
|
||||||
|
MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files
|
||||||
|
|
||||||
|
package-messages:
|
||||||
|
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common package-messages
|
||||||
|
$(MAKE) -C po merge
|
||||||
|
|
||||||
|
EXTRA_DIST = admin COPYING configure.in.in
|
||||||
|
|
||||||
|
dist-hook:
|
||||||
|
cd $(top_distdir) && perl admin/am_edit -padmin
|
||||||
|
cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs
|
@ -0,0 +1,10 @@
|
|||||||
|
all:
|
||||||
|
@echo "This Makefile is only for the CVS repository"
|
||||||
|
@echo "This will be deleted before making the distribution"
|
||||||
|
@echo ""
|
||||||
|
$(MAKE) -f admin/Makefile.common cvs
|
||||||
|
|
||||||
|
dist:
|
||||||
|
$(MAKE) -f admin/Makefile.common dist
|
||||||
|
|
||||||
|
.SILENT:
|
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 06098efaf31973c11d7dd89ae291e6844b132e1a
|
@ -0,0 +1 @@
|
|||||||
|
Subproject commit e47cc63e66a12ca6b740500b76f385336ee40dbc
|
@ -0,0 +1,2 @@
|
|||||||
|
./admin/configure.in.min
|
||||||
|
configure.in.in
|
@ -0,0 +1,6 @@
|
|||||||
|
#MIN_CONFIG(3.2.0)
|
||||||
|
|
||||||
|
AM_INIT_AUTOMAKE(autostart, 0.1)
|
||||||
|
AC_C_BIGENDIAN
|
||||||
|
AC_CHECK_KDEMAXPATHLEN
|
||||||
|
|
@ -0,0 +1,5 @@
|
|||||||
|
kerberostray-trinity (0.5-0ubuntu0) karmic; urgency=low
|
||||||
|
|
||||||
|
* Karmic rebuild
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 July 2009 16:08:00 -0600
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,13 @@
|
|||||||
|
Source: kerberostray-trinity
|
||||||
|
Section: tde
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
XSBC-Original-Maintainer: Raphaël Pinson <raphink@raphink.net>
|
||||||
|
Build-Depends: debhelper (>= 5), cdbs, tdelibs4-trinity-dev, libtdeldap, automake, autoconf, libtool, libltdl-dev
|
||||||
|
Standards-Version: 3.8.4
|
||||||
|
|
||||||
|
Package: kerberostray-trinity
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, heimdal-clients
|
||||||
|
Description: Kerberos ticket manager
|
||||||
|
Kerberos ticket manager which sits in the system tray and allows viewing/control of Kerberos tickets
|
@ -0,0 +1,31 @@
|
|||||||
|
This package was debianized by Timothy Pearson <kb9vqf@pearsoncomputing.net> on
|
||||||
|
Thu, 17 May 2012 19:52:51 +0100.
|
||||||
|
|
||||||
|
It was downloaded from http://www.trinitydesktop.org
|
||||||
|
|
||||||
|
Upstream Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
|
||||||
|
copyright (C) 2012 Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
|
||||||
|
License:
|
||||||
|
|
||||||
|
This package 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 package 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 package; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
On Debian systems, the complete text of the GNU General
|
||||||
|
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||||
|
|
||||||
|
The Debian packaging is (C) 2012, Timothy Pearson <kb9vqf@pearsoncomputing.net> and
|
||||||
|
is licensed under the GPL, see above.
|
||||||
|
|
@ -0,0 +1,24 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
||||||
|
include /usr/share/cdbs/1/class/autotools.mk
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/tde
|
||||||
|
DEB_CONFIGURE_MANDIR := /opt/trinity/share/man
|
||||||
|
DEB_CONFIGURE_PREFIX := /opt/trinity
|
||||||
|
DEB_CONFIGURE_INFODIR := /opt/trinity/share/info
|
||||||
|
|
||||||
|
cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
|
||||||
|
|
||||||
|
post-patches:: debian/stamp-bootstrap
|
||||||
|
|
||||||
|
debian/stamp-bootstrap:
|
||||||
|
! [ -f /usr/share/libtool/ltmain.sh ] || \
|
||||||
|
cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh
|
||||||
|
! [ -f /usr/share/libtool/config/ltmain.sh ] || \
|
||||||
|
cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
|
||||||
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||||
|
|
||||||
|
make -f admin/Makefile.common cvs
|
||||||
|
touch debian/stamp-bootstrap
|
@ -0,0 +1,6 @@
|
|||||||
|
# the SUBDIRS is filled automatically by am_edit. If files are
|
||||||
|
# in this directory they are installed into the english dir
|
||||||
|
|
||||||
|
KDE_LANG = en
|
||||||
|
KDE_DOCS = autostart
|
||||||
|
SUBDIRS = $(AUTODIRS)
|
@ -0,0 +1,2 @@
|
|||||||
|
KDE_DOCS = ldap
|
||||||
|
KDE_LANG = en
|
@ -0,0 +1,2 @@
|
|||||||
|
POFILES = AUTO
|
||||||
|
# noinst_HEADERS = ldap.pot
|
@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
INCLUDES= $(all_includes)
|
||||||
|
|
||||||
|
bin_PROGRAMS = kerberostray
|
||||||
|
|
||||||
|
kerberostray_SOURCES = main.cpp toplevel.cpp tealist.cpp timeedit.cpp
|
||||||
|
|
||||||
|
kerberostray_METASOURCES = AUTO
|
||||||
|
kerberostray_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
|
||||||
|
|
||||||
|
# LIB_KIO needed for KNotifyDialog
|
||||||
|
kerberostray_LDADD = $(LIB_TDEUI) $(LIB_KIO)
|
||||||
|
|
||||||
|
KDE_ICON = kerberostray
|
||||||
|
|
||||||
|
KDE_OPTIONS = nofinal
|
||||||
|
|
||||||
|
kerberostrayicondir = $(kde_datadir)/kerberostray/icons
|
||||||
|
kerberostrayicon_ICON = AUTO
|
||||||
|
|
||||||
|
messages:
|
||||||
|
$(XGETTEXT) $(kerberostray_SOURCES) -o $(podir)/kerberostray.pot
|
||||||
|
|
||||||
|
xdg_apps_DATA = kerberostray.desktop
|
After Width: | Height: | Size: 868 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 4.1 KiB |
@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=KerberosTray
|
||||||
|
GenericName=Kerberos Ticket Manager
|
||||||
|
Exec=kerberostray
|
||||||
|
Icon=kerberostray
|
||||||
|
Type=Application
|
||||||
|
Terminal=false
|
||||||
|
DocPath=kerberostray/index.html
|
||||||
|
X-KDE-StartupNotify=true
|
||||||
|
X-DCOP-ServiceType=Multi
|
||||||
|
Categories=Qt;KDE;Utilities;
|
@ -0,0 +1,52 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2012 by Timothy Pearson *
|
||||||
|
* kb9vqf@pearsoncomputing.net *
|
||||||
|
* *
|
||||||
|
* 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., *
|
||||||
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
#include <twin.h>
|
||||||
|
#include <kstartupinfo.h>
|
||||||
|
#include <kcmdlineargs.h>
|
||||||
|
#include <kaboutdata.h>
|
||||||
|
|
||||||
|
#include "toplevel.h"
|
||||||
|
|
||||||
|
|
||||||
|
static const char description[] =
|
||||||
|
I18N_NOOP("TDE utility for managing Kerberos tickets");
|
||||||
|
|
||||||
|
static const char version[] = "v0.0.1";
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
KAboutData aboutData( "kerberostray", I18N_NOOP("Kerberos Ticket Manager"),
|
||||||
|
version, description, KAboutData::License_GPL,
|
||||||
|
"(c) 2012, Timothy Pearson");
|
||||||
|
aboutData.addAuthor("Timothy Pearson",0, "kb9vqf@pearsoncomputing.net");
|
||||||
|
KCmdLineArgs::init( argc, argv, &aboutData );
|
||||||
|
|
||||||
|
KApplication app;
|
||||||
|
|
||||||
|
TopLevel toplevel;
|
||||||
|
KWin::setSystemTrayWindowFor(toplevel.winId(), 0);
|
||||||
|
toplevel.show();
|
||||||
|
|
||||||
|
app.setTopWidget(&toplevel);
|
||||||
|
KStartupInfo::appStarted();
|
||||||
|
|
||||||
|
return app.exec();
|
||||||
|
}
|
@ -0,0 +1,189 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2012 by Timothy Pearson *
|
||||||
|
* kb9vqf@pearsoncomputing.net *
|
||||||
|
* *
|
||||||
|
* 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., *
|
||||||
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
|
#include <tqcheckbox.h>
|
||||||
|
#include <tqlayout.h>
|
||||||
|
#include <tqhbox.h>
|
||||||
|
#include <tqvbox.h>
|
||||||
|
#include <tqlineedit.h>
|
||||||
|
#include <tqpainter.h>
|
||||||
|
#include <tqtooltip.h>
|
||||||
|
#include <tqfile.h>
|
||||||
|
#include <tqcursor.h>
|
||||||
|
#include <tqpushbutton.h>
|
||||||
|
#include <tqgroupbox.h>
|
||||||
|
#include <tqheader.h>
|
||||||
|
#include <tqpixmap.h>
|
||||||
|
#include <tqbitmap.h>
|
||||||
|
|
||||||
|
#include <kconfig.h>
|
||||||
|
#include <khelpmenu.h>
|
||||||
|
#include <kiconloader.h>
|
||||||
|
#include <klocale.h>
|
||||||
|
#include <kmessagebox.h>
|
||||||
|
#include <kpassivepopup.h>
|
||||||
|
#include <knotifyclient.h>
|
||||||
|
#include <knuminput.h>
|
||||||
|
#include <kseparator.h>
|
||||||
|
#include <kpopupmenu.h>
|
||||||
|
#include <kdialogbase.h>
|
||||||
|
#include <kaction.h>
|
||||||
|
#include <knotifydialog.h>
|
||||||
|
|
||||||
|
#include "tealist.h"
|
||||||
|
#include "timeedit.h"
|
||||||
|
#include "toplevel.h"
|
||||||
|
#include "toplevel.moc"
|
||||||
|
|
||||||
|
|
||||||
|
const int TopLevel::DEFAULT_TEA_TIME = 3*60;
|
||||||
|
|
||||||
|
|
||||||
|
TopLevel::TopLevel() : KSystemTray()
|
||||||
|
{
|
||||||
|
setBackgroundMode(X11ParentRelative); // what for?
|
||||||
|
|
||||||
|
KConfig *config = kapp->config();
|
||||||
|
config->setGroup("Kerberos");
|
||||||
|
|
||||||
|
confAct = new KAction(i18n("&Configure..."), "configure", 0,
|
||||||
|
TQT_TQOBJECT(this), TQT_SLOT(config()), actionCollection(), "configure");
|
||||||
|
|
||||||
|
// create app menu (displayed on right-click)
|
||||||
|
menu = new TQPopupMenu();
|
||||||
|
menu->setCheckable(true);
|
||||||
|
connect(menu, TQT_SIGNAL(activated(int)), this, TQT_SLOT(teaSelected(int)));
|
||||||
|
|
||||||
|
KHelpMenu* help = new KHelpMenu(this, KGlobal::instance()->aboutData(), false);
|
||||||
|
KPopupMenu* helpMnu = help->menu();
|
||||||
|
|
||||||
|
menu->insertSeparator();
|
||||||
|
confAct->plug(menu);
|
||||||
|
menu->insertItem(SmallIcon("help"), i18n("&Help"), helpMnu);
|
||||||
|
menu->insertItem(SmallIcon("exit"), i18n("Quit"), kapp, TQT_SLOT(quit()));
|
||||||
|
|
||||||
|
confdlg = 0L;
|
||||||
|
anondlg = 0L;
|
||||||
|
|
||||||
|
stop(); // reset timer, disable some menu entries, etc.
|
||||||
|
}
|
||||||
|
|
||||||
|
/* slot: signal shutDown() from KApplication */
|
||||||
|
/* (not currently needed)
|
||||||
|
void TopLevel::queryExit()
|
||||||
|
{
|
||||||
|
KConfig *config = kapp->config();
|
||||||
|
// config->sync();
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/** Destructor */
|
||||||
|
TopLevel::~TopLevel()
|
||||||
|
{
|
||||||
|
delete menu;
|
||||||
|
// FIXME: must delete more (like all the TQWidgets in config-window)?
|
||||||
|
}
|
||||||
|
|
||||||
|
void TopLevel::resizeEvent ( TQResizeEvent * )
|
||||||
|
{
|
||||||
|
activeTicketsPixmap = loadSizedIcon("kerberos_activetickets", width());
|
||||||
|
noTicketsPixmap = loadSizedIcon("kerberos_notickets", width());
|
||||||
|
expiredTicketsPixmap = loadSizedIcon("kerberos_expiredtickets", width());
|
||||||
|
repaint();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Handle mousePressEvent */
|
||||||
|
void TopLevel::mousePressEvent(TQMouseEvent *event)
|
||||||
|
{
|
||||||
|
if (event->button() == Qt::LeftButton) {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
else if (event->button() == Qt::RightButton) {
|
||||||
|
menu->popup(TQCursor::pos());
|
||||||
|
}
|
||||||
|
else if (event->button() == MidButton) {
|
||||||
|
// currently unused
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Handle paintEvent (ie. animate icon) */
|
||||||
|
void TopLevel::paintEvent(TQPaintEvent *)
|
||||||
|
{
|
||||||
|
TQPixmap *pm = &mugPixmap;
|
||||||
|
|
||||||
|
if (running) {
|
||||||
|
if (useTrayVis)
|
||||||
|
pm = &teaAnim1Pixmap; // this is 'mugPixmap' plus brown content
|
||||||
|
else
|
||||||
|
pm = &teaNotReadyPixmap; // generic "steeping" icon
|
||||||
|
} else {
|
||||||
|
// use simple two-frame "animation"
|
||||||
|
// FIXME: how about using a TQMovie instead? (eg. MNG)
|
||||||
|
if (ready) {
|
||||||
|
if (firstFrame)
|
||||||
|
pm = &teaAnim1Pixmap;
|
||||||
|
else
|
||||||
|
pm = &teaAnim2Pixmap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TQPixmap base(*pm); // make copy of base pixmap
|
||||||
|
TQPainter p(this);
|
||||||
|
p.drawPixmap(x, y, base);
|
||||||
|
p.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Check timer and initiate appropriate action if finished */
|
||||||
|
void TopLevel::timerEvent(TQTimerEvent *)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/** update ToolTip */
|
||||||
|
void TopLevel::setToolTip(const TQString &text, bool force)
|
||||||
|
{
|
||||||
|
// don't update if text hasn't changed
|
||||||
|
if (lastTip == text) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// don't remove Tooltip if (probably - can't know for sure?) currently showing
|
||||||
|
// FIXME: this isn't too nice: currently mouse must stay outside for >1s for update to occur
|
||||||
|
if (force || !this->hasMouse() || (lastTip == i18n("Kerberos Tickets Manager"))) {
|
||||||
|
lastTip = text;
|
||||||
|
TQToolTip::remove(this);
|
||||||
|
TQToolTip::add(this, text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* config-slot: "help" button clicked */
|
||||||
|
void TopLevel::help()
|
||||||
|
{
|
||||||
|
kapp->invokeHelp();
|
||||||
|
}
|
||||||
|
|
||||||
|
void TopLevel::config()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2012 by Timothy Pearson *
|
||||||
|
* kb9vqf@pearsoncomputing.net *
|
||||||
|
* *
|
||||||
|
* 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., *
|
||||||
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
#ifndef TOPLEVEL_H
|
||||||
|
#define TOPLEVEL_H
|
||||||
|
|
||||||
|
#include <kapplication.h>
|
||||||
|
#include <tqpopupmenu.h>
|
||||||
|
#include <tqtimer.h>
|
||||||
|
#include <tqlineedit.h>
|
||||||
|
#include <tqvaluevector.h>
|
||||||
|
#include <tqlistview.h>
|
||||||
|
#include <tqpushbutton.h>
|
||||||
|
#include <tqgroupbox.h>
|
||||||
|
#include <knuminput.h>
|
||||||
|
#include <ksystemtray.h>
|
||||||
|
#include <tqpixmap.h>
|
||||||
|
|
||||||
|
class KAction;
|
||||||
|
class KDialogBase;
|
||||||
|
class TQCheckBox;
|
||||||
|
class TimeEdit;
|
||||||
|
|
||||||
|
class TopLevel : public KSystemTray
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
TopLevel();
|
||||||
|
~TopLevel();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void paintEvent(TQPaintEvent *);
|
||||||
|
void mousePressEvent(TQMouseEvent *);
|
||||||
|
void timerEvent(TQTimerEvent *);
|
||||||
|
void resizeEvent(TQResizeEvent *);
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void config();
|
||||||
|
void help();
|
||||||
|
|
||||||
|
private:
|
||||||
|
TQPixmap activeTicketsPixmap, noTicketsPixmap, expiredTicketsPixmap;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in new issue