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.
kpilot/kpilot/logWidget.h

92 lines
2.1 KiB

#ifndef _KPILOT_LOGWIDGET_H
#define _KPILOT_LOGWIDGET_H
/* logWidget.h KPilot
**
** Copyright (C) 2001 by Dan Pilone
**
** This file defines the log window widget, which logs
** sync-messages during a HotSync.
*/
/*
** 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 in a file called COPYING; if not, write to
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA 02110-1301, USA.
*/
/*
** Bug reports and questions can be sent to kde-pim@kde.org.
*/
#include "loggerDCOP.h"
#include "pilotComponent.h"
class TQLabel;
class TQTextEdit;
class TQHBox;
class KProgress;
class LogWidget : public PilotComponent , public LoggerDCOP
{
TQ_OBJECT
public:
LogWidget(TQWidget *);
~LogWidget() { } ;
// Pilot Component Methods:
//
bool showTime() const { return fShowTime; } ;
void setShowTime(bool b) { fShowTime=b; } ;
/**
* DCOP interface.
*/
virtual ASYNC logError(TQString);
virtual ASYNC logMessage(TQString);
virtual ASYNC logProgress(TQString,int);
virtual ASYNC logStartSync();
virtual ASYNC logEndSync();
// GUI customization hooks
//
//
TQHBox *buttonBox() const { return fButtonBox; } ;
public slots:
void addMessage(const TQString &);
void addError(const TQString &);
void addProgress(const TQString &,int);
void syncDone();
private slots:
void hideSplash();
void clearLog();
void saveLog();
private:
bool saveFile(const TQString &);
private:
TQTextEdit *fLog;
bool fShowTime;
TQLabel *fSplash;
TQLabel *fLabel;
KProgress *fProgress;
TQHBox *fButtonBox;
} ;
#endif