* added context menu for Share Manager to can remove a Shared Directory

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@900 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-01-01 17:47:35 +00:00
parent 526a5c2cdb
commit 8ba3c2de28
3 changed files with 48 additions and 5 deletions

View file

@ -40,14 +40,26 @@ public:
/** Loads the settings for this page */
void load();
public slots:
protected:
private slots:
void addShareDirectory();
void removeShareDirectory();
/** Create the context popup menu and it's submenus */
void shareddirListCostumPopupMenu( QPoint point );
void addShareDirectory();
void removeShareDirectory();
private:
/** Define the popup menus for the Context menu */
QMenu* contextMnu;
/** Defines the actions for the context menu */
QAction* removeAct;
/** Qt Designer generated object */
Ui::ShareManager ui;
};