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.
konversation/konversation/src/dcctransferdetailedinfopanel.h

46 lines
1.2 KiB

/*
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.
*/
/*
Copyright (C) 2007 Shintaro Matsuoka <shin@shoegazed.org>
*/
#ifndef DCCTRANSFERDETAILEDINFOPANEL_H
#define DCCTRANSFERDETAILEDINFOPANEL_H
#include "dcctransferdetailedinfopanelui.h"
class TQTimer;
class DccTransfer;
class DccTransferPanelItem;
class DccTransferDetailedInfoPanel : public DccTransferDetailedInfoPanelUI
{
Q_OBJECT
public:
explicit DccTransferDetailedInfoPanel( TQWidget* parent = 0, const char* name = 0 );
virtual ~DccTransferDetailedInfoPanel();
void setItem( DccTransferPanelItem* item );
private slots:
void updateView();
void slotTransferStatusChanged( DccTransfer* transfer, int newStatus, int oldStatus );
void slotLocationChanged( const TQString& url );
void slotOpenFolderButtonClicked();
private:
DccTransferPanelItem* m_item;
TQTimer* m_autoViewUpdateTimer;
};
#endif // DCCTRANSFERDETAILEDINFOPANEL_H