Fixed Buttons layout,

Added save as, print, printpreview to context menu

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2112 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-01-22 19:23:12 +00:00
parent 51c2e5b642
commit acca7d5c90
3 changed files with 59 additions and 8 deletions

View file

@ -58,6 +58,9 @@ private slots:
void print();
void printpreview();
bool fileSave();
bool fileSaveAs();
void removemessage();
void anchorClicked (const QUrl &);
@ -76,6 +79,8 @@ private:
bool getCurrentMsg(std::string &cid, std::string &mid);
void setMsgAsRead(QTreeWidgetItem *);
void setCurrentFileName(const QString &fileName);
std::string mCurrCertId;
std::string mCurrMsgId;
@ -92,6 +97,9 @@ private:
QAction* getRecAct;
QAction* getAllRecAct;
QString fileName;
/** Qt Designer generated object */
Ui::MessagesDialog ui;