mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-12 11:02:30 -04:00
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:
parent
22bfc3e821
commit
844e6a6941
7 changed files with 494 additions and 0 deletions
|
@ -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));
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue