added utility function to add user, refresh screen, clear scrn

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@557 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2008-05-18 20:23:09 +00:00
parent 95b93b1e5c
commit 7bcfda123f

View File

@ -41,12 +41,21 @@ public slots:
void sendBlog(); void sendBlog();
void setFont(); void setFont();
void setStatus(); void setStatus();
/// populates blog service with current information from core
void update();
private slots: private slots:
/*nothing here yet */ /*nothing here yet */
private: private:
/// to add usr to usr list: utility function for update
void addUser(const std::string& usr);
/// remove everything from usrlist and blogText box
void clear();
/* Current Font */ /* Current Font */
QFont mCurrentFont; QFont mCurrentFont;
@ -55,5 +64,7 @@ QFont mUsrFont;
}; };
#endif #endif