mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-13 00:53:14 -04:00
Added new common widget FriendSelectionWidget for selecting friends and use it in CreateLobbyDialog, ShareKey (forums and channels) and MessageComposer.
Fixed german language. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4850 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
a3a0690cb4
commit
e6816c9d6f
22 changed files with 6804 additions and 3137 deletions
|
@ -19,7 +19,6 @@
|
|||
* Boston, MA 02110-1301, USA.
|
||||
****************************************************************/
|
||||
|
||||
|
||||
#ifndef _CREATE_CHANNEL_DIALOG_H
|
||||
#define _CREATE_CHANNEL_DIALOG_H
|
||||
|
||||
|
@ -27,36 +26,26 @@
|
|||
|
||||
class CreateChannel : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CreateChannel(QWidget *parent = 0);
|
||||
CreateChannel(QWidget *parent = 0);
|
||||
|
||||
void newChannel(); /* cleanup */
|
||||
|
||||
/** Qt Designer generated object */
|
||||
Ui::CreateChannel ui;
|
||||
|
||||
QPixmap picture;
|
||||
|
||||
public slots:
|
||||
/** Overloaded QWidget.show */
|
||||
void show();
|
||||
void newChannel(); /* cleanup */
|
||||
|
||||
private slots:
|
||||
|
||||
/* actions to take.... */
|
||||
void createChannel();
|
||||
void cancelChannel();
|
||||
void createChannel();
|
||||
void cancelChannel();
|
||||
|
||||
void addChannelLogo();
|
||||
void setShareList();
|
||||
void togglePersonItem(QTreeWidgetItem* item, int col);
|
||||
void addChannelLogo();
|
||||
void setShareList();
|
||||
|
||||
private:
|
||||
QPixmap picture;
|
||||
|
||||
std::list<std::string> mShareList;
|
||||
|
||||
/** Qt Designer generated object */
|
||||
Ui::CreateChannel ui;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue