Adding Calendar Sharing UI: CalDialog

Currently not functional - Sample of UI for testing while underlying service is created.

Included new calendar image and updated retroshare.pro file.
Added to Unfinished items window.

-Note: UI resize-to-window is not working properly and will be corrected.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@565 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
mysd 2008-05-29 20:56:44 +00:00
parent 22bfc3e821
commit 844e6a6941
7 changed files with 494 additions and 0 deletions

View file

@ -47,6 +47,7 @@
#include "ForumsDialog.h"
#include "channels/channelsDialog.h"
#include "BlogDialog.h"
#include "CalDialog.h"
/* for smplayer */
#include "smplayer.h"
@ -72,6 +73,7 @@
#define IMAGE_RSM16 ":/images/rsmessenger16.png"
#define IMAGE_CLOSE ":/images/close_normal.png"
#define IMAGE_SMPLAYER ":/images/smplayer_icon32.png"
#define IMAGE_CALENDAR ":/images/calendar.png"
/* Keys for UI Preferences */
@ -118,6 +120,10 @@ ApplicationWindow::ApplicationWindow(QWidget* parent, Qt::WFlags flags)
BlogDialog *blogDialog = NULL;
ui.stackPages->add(blogDialog = new BlogDialog(ui.stackPages),
createPageAction(QIcon(IMAGE_NETWORK), tr("Blog Feed"), grp));
CalDialog *calDialog = NULL;
ui.stackPages->add(calDialog = new CalDialog(ui.stackPages),
createPageAction(QIcon(IMAGE_CALENDAR), tr("Shared Calendars"), grp));