summaryrefslogtreecommitdiffstats
path: root/kdm/kfrontend/kdmconfig.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-22 01:02:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-22 01:02:36 -0600
commitb81e43465b14836b17e4fe2dea91c78a2bdd29b3 (patch)
tree7815d61ce59a6ccb6e655ed44f5fea786f520985 /kdm/kfrontend/kdmconfig.cpp
parent7021f40c13f949b7cb5ded32d0241d648a43bf6c (diff)
downloadtdebase-b81e43465b14836b17e4fe2dea91c78a2bdd29b3.tar.gz
tdebase-b81e43465b14836b17e4fe2dea91c78a2bdd29b3.zip
Part 2 of prior commit
Diffstat (limited to 'kdm/kfrontend/kdmconfig.cpp')
-rw-r--r--kdm/kfrontend/kdmconfig.cpp179
1 files changed, 0 insertions, 179 deletions
diff --git a/kdm/kfrontend/kdmconfig.cpp b/kdm/kfrontend/kdmconfig.cpp
deleted file mode 100644
index 5b57a6375..000000000
--- a/kdm/kfrontend/kdmconfig.cpp
+++ /dev/null
@@ -1,179 +0,0 @@
-/*
-
-Config for tdm
-
-Copyright (C) 1997, 1998 Steffen Hansen <hansen@kde.org>
-Copyright (C) 2000-2003 Oswald Buddenhagen <ossi@kde.org>
-
-
-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 "tdmconfig.h"
-#include "tdm_greet.h"
-
-#include <kapplication.h>
-#include <klocale.h>
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <sys/utsname.h>
-
-struct timeval st = {0, 0};
-
-CONF_GREET_DEFS
-
-TQString _stsFile;
-bool _isLocal;
-bool _authorized;
-
-static TQString
-GetCfgQStr( int id )
-{
- char *tmp = GetCfgStr( id );
- TQString qs = TQString::fromUtf8( tmp );
- free( tmp );
- return qs;
-}
-
-static TQStringList
-GetCfgQStrList( int id )
-{
- int i, len;
- char **tmp = GetCfgStrArr( id, &len );
- TQStringList qsl;
- for (i = 0; i < len - 1; i++) {
- qsl.append( TQString::fromUtf8( tmp[i] ) );
- free( tmp[i] );
- }
- free( tmp );
- return qsl;
-}
-
-// Based on kconfigbase.cpp
-static TQFont
-Str2Font( const TQString &aValue )
-{
- uint nFontBits;
- TQFont aRetFont;
- TQString chStr;
-
- TQStringList sl = TQStringList::split( TQString::fromLatin1(","), aValue );
-
- if (sl.count() == 1) {
- /* X11 font spec */
- aRetFont = TQFont( aValue );
- aRetFont.setRawMode( true );
- } else if (sl.count() == 10) {
- /* qt3 font spec */
- aRetFont.fromString( aValue );
- } else if (sl.count() == 6) {
- /* backward compatible kde2 font spec */
- aRetFont = TQFont( sl[0], sl[1].toInt(), sl[4].toUInt() );
-
- aRetFont.setStyleHint( (TQFont::StyleHint)sl[2].toUInt() );
-
- nFontBits = sl[5].toUInt();
- aRetFont.setItalic( (nFontBits & 0x01) != 0 );
- aRetFont.setUnderline( (nFontBits & 0x02) != 0 );
- aRetFont.setStrikeOut( (nFontBits & 0x04) != 0 );
- aRetFont.setFixedPitch( (nFontBits & 0x08) != 0 );
- aRetFont.setRawMode( (nFontBits & 0x20) != 0 );
- }
- aRetFont.setStyleStrategy( (TQFont::StyleStrategy)
- (TQFont::PreferMatch |
- (_antiAliasing ? TQFont::PreferAntialias : TQFont::NoAntialias)) );
-
- return aRetFont;
-}
-
-extern "C"
-void init_config( void )
-{
- CONF_GREET_INIT
-
- _isLocal = GetCfgInt( C_isLocal );
- _hasConsole = _hasConsole && _isLocal && GetCfgInt( C_hasConsole );
- _authorized = GetCfgInt( C_isAuthorized );
-
- _stsFile = _dataDir + "/tdmsts";
-
- // Greet String
- char hostname[256], *ptr;
- hostname[0] = '\0';
- if (!gethostname( hostname, sizeof(hostname) ))
- hostname[sizeof(hostname)-1] = '\0';
- struct utsname tuname;
- uname( &tuname );
- TQString gst = _greetString;
- _greetString = TQString::null;
- int i, j, l = gst.length();
- for (i = 0; i < l; i++) {
- if (gst[i] == '%') {
- switch (gst[++i].cell()) {
- case '%': _greetString += gst[i]; continue;
- case 'd': ptr = dname; break;
- case 'h': ptr = hostname; break;
- case 'n': ptr = tuname.nodename;
- for (j = 0; ptr[j]; j++)
- if (ptr[j] == '.') {
- ptr[j] = 0;
- break;
- }
- break;
- case 's': ptr = tuname.sysname; break;
- case 'r': ptr = tuname.release; break;
- case 'm': ptr = tuname.machine; break;
- default: _greetString += i18n("[fix tdmrc!]"); continue;
- }
- _greetString += TQString::fromLocal8Bit( ptr );
- } else
- _greetString += gst[i];
- }
-}
-
-
-/* out-of-place utility function */
-void
-decodeSess( dpySpec *sess, TQString &user, TQString &loc )
-{
- if (sess->flags & isTTY) {
- user =
- i18n( "%1: TTY login", "%1: %n TTY logins", sess->count )
- .arg( sess->user );
- loc =
-#ifdef HAVE_VTS
- sess->vt ?
- TQString("vt%1").arg( sess->vt ) :
-#endif
- TQString::fromLatin1( *sess->from ? sess->from : sess->display );
- } else {
- user =
- !sess->user ?
- i18n("Unused") :
- *sess->user ?
- i18n("user: session type", "%1: %2")
- .arg( sess->user ).arg( sess->session ) :
- i18n("... host", "X login on %1").arg( sess->session );
- loc =
-#ifdef HAVE_VTS
- sess->vt ?
- TQString("%1, vt%2").arg( sess->display ).arg( sess->vt ) :
-#endif
- TQString::fromLatin1( sess->display );
- }
-}