aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/meeting-time-sel/e-meeting-time-sel.h
diff options
context:
space:
mode:
authorDamon Chaplin <damon@helixcode.com>2000-06-17 12:13:42 +0800
committerDamon Chaplin <damon@src.gnome.org>2000-06-17 12:13:42 +0800
commite67721cbd7d3549c07701913b1de32fac8807063 (patch)
treefde1d7371b609a5706d8ed654e3105f9de83980a /widgets/meeting-time-sel/e-meeting-time-sel.h
parent105f78dbe88c6d22f9b5e007420b50c341e0eedb (diff)
downloadgsoc2013-evolution-e67721cbd7d3549c07701913b1de32fac8807063.tar
gsoc2013-evolution-e67721cbd7d3549c07701913b1de32fac8807063.tar.gz
gsoc2013-evolution-e67721cbd7d3549c07701913b1de32fac8807063.tar.bz2
gsoc2013-evolution-e67721cbd7d3549c07701913b1de32fac8807063.tar.lz
gsoc2013-evolution-e67721cbd7d3549c07701913b1de32fac8807063.tar.xz
gsoc2013-evolution-e67721cbd7d3549c07701913b1de32fac8807063.tar.zst
gsoc2013-evolution-e67721cbd7d3549c07701913b1de32fac8807063.zip
updated to use EText items rather than GtkEntry widgets and added support
2000-06-17 Damon Chaplin <damon@helixcode.com> * widgets/meeting-time-sel/*: updated to use EText items rather than GtkEntry widgets and added support for adding new rows. svn path=/trunk/; revision=3604
Diffstat (limited to 'widgets/meeting-time-sel/e-meeting-time-sel.h')
-rw-r--r--widgets/meeting-time-sel/e-meeting-time-sel.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/widgets/meeting-time-sel/e-meeting-time-sel.h b/widgets/meeting-time-sel/e-meeting-time-sel.h
index 6df15fe54c..a2ad4b9cd5 100644
--- a/widgets/meeting-time-sel/e-meeting-time-sel.h
+++ b/widgets/meeting-time-sel/e-meeting-time-sel.h
@@ -26,6 +26,7 @@
#include <gtk/gtktable.h>
#include <libgnomeui/gnome-canvas.h>
+#include "../e-text/e-text.h"
#ifdef __cplusplus
extern "C" {
@@ -43,6 +44,8 @@ extern "C" {
/* This is the width of the icon column in the attendees list. */
#define E_MEETING_TIME_SELECTOR_ICON_COLUMN_WIDTH 24
+#define E_MEETING_TIME_SELECTOR_TEXT_Y_PAD 3
+#define E_MEETING_TIME_SELECTOR_TEXT_X_PAD 2
/* These specify the type of attendee. Either a person or a resource (e.g. a
meeting room). These are used for the Autopick options, where the user can
@@ -146,6 +149,11 @@ struct _EMeetingTimeSelectorAttendee
/* This is TRUE if the meeting request is sent to this attendee. */
gboolean send_meeting_to;
+ /* This is the period for which free/busy data for the attendee is
+ available. */
+ EMeetingTimeSelectorTime busy_periods_start;
+ EMeetingTimeSelectorTime busy_periods_end;
+
/* This is an array of EMeetingTimeSelectorPeriod elements. When it is
updated busy_periods_sorted is set to FALSE, and if a function
needs them sorted, it should call this to re-sort them if needed:
@@ -423,6 +431,20 @@ void e_meeting_time_selector_attendee_set_send_meeting_to (EMeetingTimeSelector
gint row,
gboolean send_meeting_to);
+gboolean e_meeting_time_selector_attendee_set_busy_range (EMeetingTimeSelector *mts,
+ gint row,
+ gint start_year,
+ gint start_month,
+ gint start_day,
+ gint start_hour,
+ gint start_minute,
+ gint end_year,
+ gint end_month,
+ gint end_day,
+ gint end_hour,
+ gint end_minute);
+
+
/* Clears all busy times for the given attendee. */
void e_meeting_time_selector_attendee_clear_busy_periods (EMeetingTimeSelector *mts,
gint row);