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.
tdeutils/klaptopdaemon/pcmcia.cpp

123 lines
3.3 KiB

/*
* pcmcia.cpp
*
* Copyright (c) 1999 Paul Campbell <paul@taniwha.com>
*
* Requires the TQt widget libraries, available at no cost at
* http://www.troll.no/
*
* 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 <sys/types.h>
#include <unistd.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <tqfileinfo.h>
#include <tqlayout.h>
#include <tdeglobal.h>
#include <tdelocale.h>
#include <stdio.h>
#include "pcmcia.h"
#include "portable.h"
#include "version.h"
PcmciaConfig::PcmciaConfig (TQWidget * parent, const char *name)
: TDECModule(parent, name)
{
TDEAboutData *about =
new TDEAboutData(I18N_NOOP("kcmlaptop"),
I18N_NOOP("TDE Panel System Information Control Module"),
0, 0, TDEAboutData::License_GPL,
I18N_NOOP("(c) 1999 - 2002 Paul Campbell"));
about->addAuthor("Paul Campbell", 0, "paul@taniwha.com");
setAboutData( about );
TDEGlobal::locale()->insertCatalogue("klaptopdaemon"); // For translation of klaptopdaemon messages
label0 = laptop_portable::pcmcia_info(0, this);
label0_text = laptop_portable::pcmcia_info(1, this);
label1 = laptop_portable::pcmcia_info(2, this);
label1_text = laptop_portable::pcmcia_info(3, this);
TQVBoxLayout *top_layout = new TQVBoxLayout(this, 15, 5);
TQGridLayout *top_grid = new TQGridLayout(2, 2);
top_layout->addLayout(top_grid);
top_grid->setColStretch(0, 0);
top_grid->setColStretch(1, 1);
top_grid->addRowSpacing(0, 40);
top_grid->addRowSpacing(1, 40);
label0->setFixedSize(80, 24);
top_grid->addWidget(label0, 0, 0);
label0_text->adjustSize();
top_grid->addWidget(label0_text, 0, 1);
label1->setFixedSize(80, 24);
top_grid->addWidget(label1, 1, 0);
label1_text->adjustSize();
top_grid->addWidget(label1_text, 1, 1);
top_layout->addStretch(1);
TQHBoxLayout *v1 = new TQHBoxLayout;
top_layout->addLayout(v1, 0);
v1->addStretch(1);
TQString s1 = LAPTOP_VERSION;
TQString s2 = i18n("Version: ")+s1;
TQLabel* vers = new TQLabel(s2, this);
vers->setMinimumSize(vers->sizeHint());
v1->addWidget(vers, 0);
top_layout->activate();
load();
setButtons(Help);
}
void PcmciaConfig::save()
{
}
void PcmciaConfig::load()
{
}
void PcmciaConfig::defaults()
{
}
void PcmciaConfig::changed()
{
emit TDECModule::changed(true);
}
TQString PcmciaConfig::quickHelp() const
{
return i18n("<h1>PCMCIA Config</h1>This module shows information about "
"the PCMCIA cards in your system, if there are PCMCIA cards.");
}
#include "pcmcia.moc"