#include <multiagendaview.h>
|
| MultiAgendaView (Calendar *cal, CalendarView *calendarView, TQWidget *parent=0, const char *name=0) |
|
KOAgendaView * | selectedAgendaView () |
|
void | deSelectAgendaView () |
|
Incidence::List | selectedIncidences () |
|
DateList | selectedIncidenceDates () |
|
int | currentDateCount () |
|
int | maxDatesHint () |
|
bool | eventDurationHint (TQDateTime &startDt, TQDateTime &endDt, bool &allDay) |
|
void | setTypeAheadReceiver (TQObject *o) |
|
| AgendaView (Calendar *cal, TQWidget *parent=0, const char *name=0) |
|
virtual void | setTypeAheadReceiver (TQObject *)=0 |
|
| KOEventView (Calendar *cal, TQWidget *parent=0, const char *name=0) |
|
virtual | ~KOEventView () |
|
virtual int | maxDatesHint ()=0 |
|
KOEventPopupMenu * | eventPopup () |
|
TQPopupMenu * | newEventPopup () |
|
bool | isEventView () |
|
bool | supportsDateNavigation () const |
|
| BaseView (Calendar *cal, TQWidget *parent=0, const char *name=0) |
|
virtual | ~BaseView () |
|
void | setReadOnly (bool readonly) |
|
bool | readOnly () |
|
virtual void | setCalendar (Calendar *cal) |
|
virtual Calendar * | calendar () |
|
virtual void | setResource (ResourceCalendar *res, const TQString &subResource) |
|
ResourceCalendar * | resourceCalendar () |
|
TQString | subResourceCalendar () const |
|
virtual Incidence::List | selectedIncidences ()=0 |
|
virtual DateList | selectedIncidenceDates ()=0 |
|
virtual TQDateTime | selectionStart () |
|
virtual TQDateTime | selectionEnd () |
|
virtual CalPrinterBase::PrintType | printType () |
|
virtual int | currentDateCount ()=0 |
|
virtual bool | isEventView () |
|
virtual bool | supportsDateNavigation () const |
|
|
void | datesSelected (const DateList) |
|
void | shiftedEvent (const TQDate &olddate, const TQDate &newdate) |
|
void | incidenceSelected (Incidence *, const TQDate &) |
|
void | showIncidenceSignal (Incidence *, const TQDate &) |
|
void | editIncidenceSignal (Incidence *, const TQDate &) |
|
void | deleteIncidenceSignal (Incidence *) |
|
void | cutIncidenceSignal (Incidence *) |
|
void | copyIncidenceSignal (Incidence *) |
|
void | pasteIncidenceSignal () |
|
void | toggleAlarmSignal (Incidence *) |
|
void | dissociateOccurrenceSignal (Incidence *, const TQDate &) |
|
void | dissociateFutureOccurrenceSignal (Incidence *, const TQDate &) |
|
void | startMultiModify (const TQString &) |
|
void | endMultiModify () |
|
void | newEventSignal (ResourceCalendar *res, const TQString &subResource) |
|
void | newEventSignal (ResourceCalendar *res, const TQString &subResource, const TQDate &) |
|
void | newEventSignal (ResourceCalendar *res, const TQString &subResource, const TQDateTime &) |
|
void | newEventSignal (ResourceCalendar *res, const TQString &subResource, const TQDateTime &, const TQDateTime &) |
|
void | newTodoSignal (ResourceCalendar *res, const TQString &subResource, const TQDate &) |
|
void | newSubTodoSignal (Todo *) |
|
void | newJournalSignal (ResourceCalendar *res, const TQString &subResource, const TQDate &) |
|
void | popupShow () |
|
void | popupEdit () |
|
void | popupDelete () |
|
void | popupCut () |
|
void | popupCopy () |
|
virtual void | showNewEventPopup () |
|
Incidence * | mCurrentIncidence |
|
IncidenceChangerBase * | mChanger |
|
Shows one agenda for every resource side-by-side.
Definition at line 41 of file multiagendaview.h.
◆ MultiAgendaView()
MultiAgendaView::MultiAgendaView |
( |
Calendar * |
cal, |
|
|
CalendarView * |
calendarView, |
|
|
TQWidget * |
parent = 0 , |
|
|
const char * |
name = 0 |
|
) |
| |
|
explicit |
◆ ~MultiAgendaView()
MultiAgendaView::~MultiAgendaView |
( |
| ) |
|
◆ changeIncidenceDisplay
void MultiAgendaView::changeIncidenceDisplay |
( |
Incidence * |
incidence, |
|
|
int |
mode |
|
) |
| |
|
slot |
◆ currentDateCount()
int MultiAgendaView::currentDateCount |
( |
| ) |
|
|
virtual |
◆ deSelectAgendaView()
void KOrg::MultiAgendaView::deSelectAgendaView |
( |
| ) |
|
|
inline |
◆ eventDurationHint()
bool MultiAgendaView::eventDurationHint |
( |
TQDateTime & |
, |
|
|
TQDateTime & |
, |
|
|
bool & |
|
|
) |
| |
|
virtual |
◆ eventFilter()
bool MultiAgendaView::eventFilter |
( |
TQObject * |
obj, |
|
|
TQEvent * |
event |
|
) |
| |
|
protected |
◆ finishTypeAhead
void MultiAgendaView::finishTypeAhead |
( |
| ) |
|
|
slot |
◆ maxDatesHint()
int MultiAgendaView::maxDatesHint |
( |
| ) |
|
|
virtual |
provides a hint back to the caller on the maximum number of dates that the view supports.
A return value of 0 means no maximum.
Implements KOEventView.
Definition at line 330 of file multiagendaview.cpp.
◆ resizeEvent()
void MultiAgendaView::resizeEvent |
( |
TQResizeEvent * |
ev | ) |
|
|
protected |
◆ resourcesChanged
void MultiAgendaView::resourcesChanged |
( |
| ) |
|
|
slot |
◆ selectedAgendaView()
◆ selectedIncidenceDates()
DateList MultiAgendaView::selectedIncidenceDates |
( |
| ) |
|
|
virtual |
- Returns
- a list of the dates of selected events. Most views can probably only select a single event at a time, but some may be able to select more than one.
Implements KOrg::BaseView.
Definition at line 286 of file multiagendaview.cpp.
◆ selectedIncidences()
Incidence::List MultiAgendaView::selectedIncidences |
( |
| ) |
|
|
virtual |
- Returns
- a list of selected events. Most views can probably only select a single event at a time, but some may be able to select more than one.
Implements KOrg::BaseView.
Definition at line 277 of file multiagendaview.cpp.
◆ setIncidenceChanger
void MultiAgendaView::setIncidenceChanger |
( |
IncidenceChangerBase * |
changer | ) |
|
|
slot |
◆ setTypeAheadReceiver()
void MultiAgendaView::setTypeAheadReceiver |
( |
TQObject * |
o | ) |
|
|
virtual |
◆ show
void MultiAgendaView::show |
( |
| ) |
|
|
slot |
◆ showDates
void MultiAgendaView::showDates |
( |
const TQDate & |
start, |
|
|
const TQDate & |
end |
|
) |
| |
|
slot |
◆ showIncidences
void MultiAgendaView::showIncidences |
( |
const Incidence::List & |
incidenceList, |
|
|
const TQDate & |
date |
|
) |
| |
|
slot |
◆ updateConfig
void MultiAgendaView::updateConfig |
( |
| ) |
|
|
slot |
◆ updateView
void MultiAgendaView::updateView |
( |
| ) |
|
|
slot |
The documentation for this class was generated from the following files:
|