mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
42 lines
1,003 B
C++
42 lines
1,003 B
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2007 Lukas Appelhans <l.appelhans@gmx.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.
|
|
*/
|
|
|
|
#ifndef BTDETAILSWIDGET_H
|
|
#define BTDETAILSWIDGET_H
|
|
|
|
#include "ui_btdetailswidgetfrm.h"
|
|
|
|
#include <QWidget>
|
|
|
|
#include "core/transferhandler.h"
|
|
|
|
class BTTransferHandler;
|
|
|
|
class QShowEvent;
|
|
class QHideEvent;
|
|
|
|
class BTDetailsWidget : public QWidget, public Ui::BTDetailsWidgetFrm
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
BTDetailsWidget(BTTransferHandler * transfer);
|
|
~BTDetailsWidget();
|
|
|
|
public slots:
|
|
void slotTransferChanged(TransferHandler * transfer, TransferHandler::ChangesFlags flags);
|
|
|
|
protected:
|
|
virtual void showEvent(QShowEvent * event);
|
|
|
|
private:
|
|
BTTransferHandler * m_transfer;
|
|
};
|
|
|
|
#endif
|