1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
#!/usr/bin/env python
# example calendar.py
#
# Copyright (C) 1998 Cesar Miquel, Shawn T. Amundson, Mattias Grnlund
# Copyright (C) 2000 Tony Gale
# Copyright (C) 2001-2004 John Finlay
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import pygtk
pygtk.require('2.0')
import gtk, pango
import time
class CalendarExample:
DEF_PAD = 10
DEF_PAD_SMALL = 5
TM_YEAR_BASE = 1900
calendar_show_header = 0
calendar_show_days = 1
calendar_month_change = 2
calendar_show_week = 3
def calendar_date_to_string(self):
year, month, day = self.window.get_date()
mytime = time.mktime((year, month+1, day, 0, 0, 0, 0, 0, -1))
return time.strftime("%x", time.localtime(mytime))
def calendar_set_signal_strings(self, sig_str):
prev_sig = self.prev_sig.get()
self.prev2_sig.set_text(prev_sig)
prev_sig = self.last_sig.get()
self.prev_sig.set_text(prev_sig)
self.last_sig.set_text(sig_str)
def calendar_month_changed(self, widget):
buffer = "month_changed: %s" % self.calendar_date_to_string()
self.calendar_set_signal_strings(buffer)
def calendar_day_selected(self, widget):
buffer = "day_selected: %s" % self.calendar_date_to_string()
self.calendar_set_signal_strings(buffer)
def calendar_day_selected_double_click(self, widget):
buffer = "day_selected_double_click: %s"
buffer = buffer % self.calendar_date_to_string()
self.calendar_set_signal_strings(buffer)
year, month, day = self.window.get_date()
if self.marked_date[day-1] == 0:
self.window.mark_day(day)
self.marked_date[day-1] = 1
else:
self.window.unmark_day(day)
self.marked_date[day-1] = 0
def calendar_prev_month(self, widget):
buffer = "prev_month: %s" % self.calendar_date_to_string()
self.calendar_set_signal_strings(buffer)
def calendar_next_month(self, widget):
buffer = "next_month: %s" % self.calendar_date_to_string()
self.calendar_set_signal_strings(buffer)
def calendar_prev_year(self, widget):
buffer = "prev_year: %s" % self.calendar_date_to_string()
self.calendar_set_signal_strings(buffer)
def calendar_next_year(self, widget):
buffer = "next_year: %s" % self.calendar_date_to_string()
self.calendar_set_signal_strings(buffer)
def calendar_set_flags(self):
options = 0
for i in range(5):
if self.settings[i]:
options = options + (1<<i)
if self.window:
self.window.display_options(options)
def calendar_toggle_flag(self, toggle):
j = 0
for i in range(5):
if self.flag_checkboxes[i] == toggle:
j = i
self.settings[j] = not self.settings[j]
self.calendar_set_flags()
def calendar_font_selection_ok(self, button):
self.font = self.font_dialog.get_font_name()
if self.window:
font_desc = pango.FontDescription(self.font)
if font_desc:
self.window.modify_font(font_desc)
def calendar_select_font(self, button):
if not self.font_dialog:
window = gtk.FontSelectionDialog("Font Selection Dialog")
self.font_dialog = window
window.set_position(gtk.WIN_POS_MOUSE)
window.connect("destroy", self.font_dialog_destroyed)
window.ok_button.connect("clicked",
self.calendar_font_selection_ok)
window.cancel_button.connect_object("clicked",
lambda wid: wid.destroy(),
self.font_dialog)
window = self.font_dialog
if not (window.flags() & gtk.VISIBLE):
window.show()
else:
window.destroy()
self.font_dialog = None
def font_dialog_destroyed(self, data=None):
self.font_dialog = None
def __init__(self):
flags = [
"Show Heading",
"Show Day Names",
"No Month Change",
"Show Week Numbers",
]
self.window = None
self.font = None
self.font_dialog = None
self.flag_checkboxes = 5*[None]
self.settings = 5*[0]
self.marked_date = 31*[0]
window = gtk.Window(gtk.WINDOW_TOPLEVEL)
window.set_title("Calendar Example")
window.set_border_width(5)
window.connect("destroy", lambda x: gtk.main_quit())
window.set_resizable(gtk.FALSE)
vbox = gtk.VBox(gtk.FALSE, self.DEF_PAD)
window.add(vbox)
# The top part of the window, Calendar, flags and fontsel.
hbox = gtk.HBox(gtk.FALSE, self.DEF_PAD)
vbox.pack_start(hbox, gtk.TRUE, gtk.TRUE, self.DEF_PAD)
hbbox = gtk.HButtonBox()
hbox.pack_start(hbbox, gtk.FALSE, gtk.FALSE, self.DEF_PAD)
hbbox.set_layout(gtk.BUTTONBOX_SPREAD)
hbbox.set_spacing(5)
# Calendar widget
frame = gtk.Frame("Calendar")
hbbox.pack_start(frame, gtk.FALSE, gtk.TRUE, self.DEF_PAD)
calendar = gtk.Calendar()
self.window = calendar
self.calendar_set_flags()
calendar.mark_day(19)
self.marked_date[19-1] = 1
frame.add(calendar)
calendar.connect("month_changed", self.calendar_month_changed)
calendar.connect("day_selected", self.calendar_day_selected)
calendar.connect("day_selected_double_click",
self.calendar_day_selected_double_click)
calendar.connect("prev_month", self.calendar_prev_month)
calendar.connect("next_month", self.calendar_next_month)
calendar.connect("prev_year", self.calendar_prev_year)
calendar.connect("next_year", self.calendar_next_year)
separator = gtk.VSeparator()
hbox.pack_start(separator, gtk.FALSE, gtk.TRUE, 0)
vbox2 = gtk.VBox(gtk.FALSE, self.DEF_PAD)
hbox.pack_start(vbox2, gtk.FALSE, gtk.FALSE, self.DEF_PAD)
# Build the Right frame with the flags in
frame = gtk.Frame("Flags")
vbox2.pack_start(frame, gtk.TRUE, gtk.TRUE, self.DEF_PAD)
vbox3 = gtk.VBox(gtk.TRUE, self.DEF_PAD_SMALL)
frame.add(vbox3)
for i in range(len(flags)):
toggle = gtk.CheckButton(flags[i])
toggle.connect("toggled", self.calendar_toggle_flag)
vbox3.pack_start(toggle, gtk.TRUE, gtk.TRUE, 0)
self.flag_checkboxes[i] = toggle
# Build the right font-button
button = gtk.Button("Font...")
button.connect("clicked", self.calendar_select_font)
vbox2.pack_start(button, gtk.FALSE, gtk.FALSE, 0)
# Build the Signal-event part.
frame = gtk.Frame("Signal events")
vbox.pack_start(frame, gtk.TRUE, gtk.TRUE, self.DEF_PAD)
vbox2 = gtk.VBox(gtk.TRUE, self.DEF_PAD_SMALL)
frame.add(vbox2)
hbox = gtk.HBox (gtk.FALSE, 3)
vbox2.pack_start(hbox, gtk.FALSE, gtk.TRUE, 0)
label = gtk.Label("Signal:")
hbox.pack_start(label, gtk.FALSE, gtk.TRUE, 0)
self.last_sig = gtk.Label("")
hbox.pack_start(self.last_sig, gtk.FALSE, gtk.TRUE, 0)
hbox = gtk.HBox (gtk.FALSE, 3)
vbox2.pack_start(hbox, gtk.FALSE, gtk.TRUE, 0)
label = gtk.Label("Previous signal:")
hbox.pack_start(label, gtk.FALSE, gtk.TRUE, 0)
self.prev_sig = gtk.Label("")
hbox.pack_start(self.prev_sig, gtk.FALSE, gtk.TRUE, 0)
hbox = gtk.HBox (gtk.FALSE, 3)
vbox2.pack_start(hbox, gtk.FALSE, gtk.TRUE, 0)
label = gtk.Label("Second previous signal:")
hbox.pack_start(label, gtk.FALSE, gtk.TRUE, 0)
self.prev2_sig = gtk.Label("")
hbox.pack_start(self.prev2_sig, gtk.FALSE, gtk.TRUE, 0)
bbox = gtk.HButtonBox ()
vbox.pack_start(bbox, gtk.FALSE, gtk.FALSE, 0)
bbox.set_layout(gtk.BUTTONBOX_END)
button = gtk.Button("Close")
button.connect("clicked", lambda w: gtk.main_quit())
bbox.add(button)
button.set_flags(gtk.CAN_DEFAULT)
button.grab_default()
window.show_all()
def main():
gtk.main()
return 0
if __name__ == "__main__":
CalendarExample()
main()
|