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:
thunder2 2012-01-27 00:32:17 +00:00
parent a3a0690cb4
commit e6816c9d6f
22 changed files with 6804 additions and 3137 deletions

View file

@ -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