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 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
{ $Id$}
{
*****************************************************************************
* Gtk2WSCalendar.pp *
* ----------------- *
* *
* *
*****************************************************************************
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit Gtk2WSCalendar;
{$mode objfpc}{$H+}
interface
uses
// RTL
glib2, gdk2, gtk2, SysUtils, Types, Classes,
// RTL, FCL, LCL
Controls, Calendar, LCLType, LMessages,
InterfaceBase, LCLProc,
// Widgetset
Gtk2Proc, Gtk2Def, Gtk2Int, Gtk2WsControls,
WSCalendar, WSLCLClasses, WSProc;
type
{ TGtk2WSCalendar }
{ TGtk2WSCustomCalendar }
TGtk2WSCustomCalendar = class(TWSCustomCalendar)
protected
class procedure SetCallbacks(const AGtkWidget: PGtkWidget; const AWidgetInfo: PWidgetInfo); virtual;
class function GetCalendar(const ACalendar: TCustomCalendar): PGtkCalendar; //inline;
published
class function CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLHandle; override;
class procedure DestroyHandle(const AWinControl: TWinControl); override;
class function GetDateTime(const ACalendar: TCustomCalendar): TDateTime; override;
class function HitTest(const ACalendar: TCustomCalendar; const APoint: TPoint): TCalendarPart; override;
class procedure SetDateTime(const ACalendar: TCustomCalendar; const ADateTime: TDateTime); override;
class procedure SetDisplaySettings(const ACalendar: TCustomCalendar;
const ADisplaySettings: TDisplaySettings); override;
class procedure GetPreferredSize(const AWinControl: TWinControl;
var PreferredWidth, PreferredHeight: integer;
WithThemeSpace: Boolean); override;
end;
implementation
type
TGtkCalendarPrivate = record
header_win: PGdkWindow;
day_name_win: PGdkWindow;
main_win: PGdkWindow;
week_win: PGdkWindow;
arrow_win: array[0..3] of PGdkWindow;
header_h: guint;
day_name_h: guint;
main_h: guint;
arrow_state: array[0..3] of guint;
arrow_width: guint;
max_month_width: guint;
max_year_width: guint;
day_width: guint;
week_width: guint;
min_day_width: guint;
max_day_char_width: guint;
max_day_char_ascent: guint;
max_day_char_descent: guint;
max_label_char_ascent: guint;
max_label_char_descent: guint;
max_week_char_width: guint;
end;
PGtkCalendarPrivate = ^TGtkCalendarPrivate;
TGtkCalendarInternalTimer = record
ACalendar : TCustomCalendar;
gtkcalendardisplayoptions: TGtkCalendarDisplayOptions;
ATimerSourceID: guint;
end;
PGtkCalendarInternalTimer = ^TGtkCalendarInternalTimer;
function SetCalendarDisplayOptionsTimer(data: gpointer): gboolean; cdecl;
Var
AGtkCalendarInternalTimer : PGtkCalendarInternalTimer absolute data;
AGtkCalendar: PGtkCalendar;
begin
Result := False;
AGtkCalendar := TGtk2WSCustomCalendar.GetCalendar(AGtkCalendarInternalTimer^.ACalendar);
gtk_Calendar_Display_options(AGtkCalendar, AGtkCalendarInternalTimer^.gtkcalendardisplayoptions);
g_source_remove(AGtkCalendarInternalTimer^.ATimerSourceID);
Dispose(AGtkCalendarInternalTimer);
end;
{ TGtk2WSCustomCalendar }
class procedure TGtk2WSCustomCalendar.SetCallbacks(const AGtkWidget: PGtkWidget;
const AWidgetInfo: PWidgetInfo);
begin
TGtk2WSWinControl.SetCallbacks(PGtkObject(AGtkWidget), TComponent(AWidgetInfo^.LCLObject));
with TGtk2Widgetset(Widgetset) do
begin
SetCallback(LM_MONTHCHANGED, PGtkObject(AGtkWidget), AWidgetInfo^.LCLObject);
SetCallback(LM_YEARCHANGED, PGtkObject(AGtkWidget), AWidgetInfo^.LCLObject);
SetCallback(LM_DAYCHANGED, PGtkObject(AGtkWidget), AWidgetInfo^.LCLObject);
end;
g_signal_handlers_disconnect_by_func(PGtkObject(AWidgetInfo^.CoreWidget),
TGTKSignalFunc(@GtkDragDataReceived), AWidgetInfo^.LCLObject);
end;
class function TGtk2WSCustomCalendar.GetCalendar(const ACalendar: TCustomCalendar): PGtkCalendar; //inline;
begin
Result := PGtkCalendar(GetWidgetInfo({%H-}PGtkWidget(ACalendar.Handle))^.CoreWidget);
end;
class function TGtk2WSCustomCalendar.CreateHandle(
const AWinControl: TWinControl; const AParams: TCreateParams
): TLCLHandle;
var
FrameWidget, CalendarWidget: PGtkWidget;
WidgetInfo: PWidgetInfo;
Allocation: TGtkAllocation;
Requisition: TGtkRequisition;
begin
FrameWidget := gtk_frame_new(nil);
CalendarWidget := gtk_calendar_new();
gtk_container_add(PGtkContainer(FrameWidget), CalendarWidget);
gtk_widget_show_all(FrameWidget);
// if we don't request it - we have a SIGFPE sometimes
gtk_widget_size_request(CalendarWidget, @Requisition);
Result := TLCLHandle({%H-}PtrUInt(FrameWidget));
{$IFDEF DebugLCLComponents}
DebugGtkWidgets.MarkCreated(FrameWidget, dbgsName(AWinControl));
{$ENDIF}
WidgetInfo := CreateWidgetInfo(FrameWidget, AWinControl, AParams);
WidgetInfo^.CoreWidget := CalendarWidget;
SetMainWidget(FrameWidget, CalendarWidget);
Allocation.X := AParams.X;
Allocation.Y := AParams.Y;
Allocation.Width := AParams.Width;
Allocation.Height := AParams.Height;
gtk_widget_size_allocate({%H-}PGtkWidget(Result), @Allocation);
Set_RC_Name(AWinControl, FrameWidget);
SetCallBacks(FrameWidget, WidgetInfo);
end;
class procedure TGtk2WSCustomCalendar.DestroyHandle(
const AWinControl: TWinControl);
begin
TGtk2WSWinControl.DestroyHandle(AWinControl);
//inherited DestroyHandle(AWinControl);
end;
class function TGtk2WSCustomCalendar.GetDateTime(const ACalendar: TCustomCalendar): TDateTime;
var
Year, Month, Day: guint; //used for csCalendar
begin
Result := 0;
if not WSCheckHandleAllocated(ACalendar, 'GetDateTime') then
Exit;
gtk_calendar_get_date(GetCalendar(ACalendar), @Year, @Month, @Day);
//For some reason, the month is zero based.
Result := EncodeDate(Year, Month + 1, Day);
end;
class function TGtk2WSCustomCalendar.HitTest(const ACalendar: TCustomCalendar;
const APoint: TPoint): TCalendarPart;
var
GtkCalendar: PGtkCalendar;
Style: PGtkStyle;
FrameW, FrameH, BodyY, BodyX, DayH, ArrowW: Integer;
Options: TGtkCalendarDisplayOptions;
R: TRect;
begin
Result := cpNoWhere;
if not WSCheckHandleAllocated(ACalendar, 'HitTest') then
Exit;
GtkCalendar := GetCalendar(ACalendar);
Style := gtk_widget_get_style({%H-}PGtkWidget(ACalendar.Handle));
FrameW := gtk_widget_get_xthickness(Style);
FrameH := gtk_widget_get_Ythickness(Style);
Options := gtk_calendar_get_display_options(GtkCalendar);
if Ord(Options) and Ord(GTK_CALENDAR_SHOW_HEADING) <> 0 then
BodyY := PGtkCalendarPrivate(GtkCalendar^.private_data)^.header_h
else
BodyY := 0;
if Ord(Options) and Ord(GTK_CALENDAR_SHOW_WEEK_NUMBERS) <> 0 then
BodyX := PGtkCalendarPrivate(GtkCalendar^.private_data)^.week_width
else
BodyX := 0;
if APoint.Y >= BodyY + FrameH then
begin
// we are in the body
if Ord(Options) and Ord(GTK_CALENDAR_SHOW_DAY_NAMES) <> 0 then
DayH := PGtkCalendarPrivate(GtkCalendar^.private_data)^.day_name_h
else
DayH := 0;
if (APoint.Y - BodyY - DayH - FrameH >= 0) then
begin
if APoint.X >= BodyX + FrameW then
Result := cpDate
else
Result := cpWeekNumber;
end;
end
else
if BodyY > 0 then
begin
Result := cpTitle; // we are in the header at least
ArrowW := PGtkCalendarPrivate(GtkCalendar^.private_data)^.arrow_width;
R.Top := 3 + FrameH;
R.Bottom := BodyY - 7 + FrameH;
R.Left := 3 + FrameW;
// check month + buttons
R.Right := R.Left + ArrowW + 1;
if PtInRect(R, APoint) then
Exit(cpTitleBtn);
R.Left := R.Right + 1;
R.Right := FrameW + ArrowW + integer(PGtkCalendarPrivate(GtkCalendar^.private_data)^.max_month_width) + 1;
if PtInRect(R, APoint) then
Exit(cpTitleMonth);
R.Left := R.Right;
R.Right := R.Left + ArrowW;
if PtInRect(R, APoint) then
Exit(cpTitleBtn);
// check year + buttons
Style := gtk_widget_get_style(PGtkWidget(GtkCalendar));
R.Right := PGtkWidget(GtkCalendar)^.allocation.width - 3 -
2 * gtk_widget_get_xthickness(Style) + FrameW + 1;
R.Left := R.Right - ArrowW;
if PtInRect(R, APoint) then
Exit(cpTitleBtn);
R.Right := R.Left;
R.Left := R.Right - PGtkCalendarPrivate(GtkCalendar^.private_data)^.max_year_width;
if PtInRect(R, APoint) then
Exit(cpTitleYear);
R.Right := R.Left;
R.Left := R.Right - ArrowW;
if PtInRect(R, APoint) then
Exit(cpTitleBtn);
end;
end;
class procedure TGtk2WSCustomCalendar.SetDateTime(const ACalendar: TCustomCalendar; const ADateTime: TDateTime);
var
Year, Month, Day: string;
GtkCalendar: PGtkCalendar;
begin
if not WSCheckHandleAllocated(ACalendar, 'SetDateTime') then
Exit;
GtkCalendar := GetCalendar(ACalendar);
Year := FormatDateTime('yyyy', ADateTime);
Month := FormatDateTime('mm', ADateTime);
Day := FormatDateTime('dd', ADateTime);
gtk_calendar_select_month(GtkCalendar, StrtoInt(Month) - 1, StrToInt(Year));
gtk_calendar_select_day(GtkCalendar, StrToInt(Day));
end;
class procedure TGtk2WSCustomCalendar.SetDisplaySettings(const ACalendar: TCustomCalendar;
const ADisplaySettings: TDisplaySettings);
var
num: dword;
gtkcalendardisplayoptions : TGtkCalendarDisplayOptions;
AGtkCalendarInternalTimer : PGtkCalendarInternalTimer;
begin
if not WSCheckHandleAllocated(ACalendar, 'SetDisplaySettings') then
Exit;
num := 0;
if (dsShowHeadings in ADisplaySettings) then
num := Num + (1 shl 0);
if (dsShowDayNames in ADisplaySettings) then
num := Num + (1 shl 1);
if (dsNoMonthChange in ADisplaySettings) then
num := Num + (1 shl 2);
if (dsShowWeekNumbers in ADisplaySettings) then
num := Num + (1 shl 3);
{
if (dsStartMonday in ADisplaySettings) then
num := Num + (1 shl 4);
}
gtkCalendarDisplayOptions := TGtkCalendarDisplayOptions(num);
New(AGtkCalendarInternalTimer);
AGtkCalendarInternalTimer^.ACalendar := ACalendar;
AGtkCalendarInternalTimer^.gtkcalendardisplayoptions := gtkCalendarDisplayOptions;
AGtkCalendarInternalTimer^.ATimerSourceID := g_timeout_add(1, @SetCalendarDisplayOptionsTimer, AGtkCalendarInternalTimer);
end;
class procedure TGtk2WSCustomCalendar.GetPreferredSize(
const AWinControl: TWinControl; var PreferredWidth, PreferredHeight: integer;
WithThemeSpace: Boolean);
begin
GetGTKDefaultWidgetSize(AWinControl, PreferredWidth, PreferredHeight,
WithThemeSpace);
end;
end.
|