معرفی شرکت ها


calendar-widget-1.0.8


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Calendar widget for use with python tkinter
ویژگی مقدار
سیستم عامل -
نام فایل calendar-widget-1.0.8
نام calendar-widget
نسخه کتابخانه 1.0.8
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده Spartanlasergun <bns360@live.com>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/calendar-widget/
مجوز -
# Calendar Widget for use with python tkinter <img align="left" src="https://github.com/Spartanlasergun/calendar_widget/blob/main/README_info/Calendar%20-%20Light%20Theme.png?raw=true"> <img align="right" src="https://github.com/Spartanlasergun/calendar_widget/blob/main/README_info/Calendar%20-%20Dark%20Theme.png?raw=true"> ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ # INSTALLATION ##### Install the calendar widget using the following commands ```python pip install calendar_widget ``` # USAGE #### First, Import the calendar widget along with tkinter ```python import tkinter from calendar_widget import Calendar ``` ##### Define the tkinter window into which the widget will be placed. EXAMPLE: ```python root = tkinter.Tk() root.geometry('600x600') ``` ##### The Calendar Widget can then be created as follows: ```python Calendar = Calendar(root) ``` ##### To pass a command to the Calendar, specify the command option when it is created ```python Calendar = Calendar(root, command=user_command, ...) ``` ##### To retrieve a selected date on the calendar, use the get_date command: ```python Calender.get_date() ``` ##### To create a checkbox on the calendar, the command is as follows: ```python checkbox = Calendar.checkboxes(10, 10, 2022, status=True, ...) #to remove a chcekbox that has already been created specify the delete option as follows: Calendar.checkboxes(10, 10, 2022, delete=True) ``` ##### To destroy the calendar widget, call the destroy method: ```python Calendar.destroy() ``` ## Example 1 - Basic Setup ----- <img align="right" src="https://github.com/Spartanlasergun/calendar_widget/blob/main/README_info/example_one.png?raw=true"> ```python # import tkinter and the calendar widget import tkinter from calendar_widget import Calendar # define the main window into which the widget will be placed root = tkinter.Tk() root.geometry('600x600') # the geometry function defines the size of the tkinter window # - in this case, we are using a window that is 600px by 600px # create the calendar widget Calendar = Calendar(root, # specify the tkinter window into which the widget will be placed pos_x = 0, # set the x position of the calendar widget within the tkinter window pos_y = 0, # set the y position of the calendar widget within the tkinter window background = 'lightblue', # set the background of the calendar to light blue ) # Note: images of the type 'png', 'gif', 'ppm', and 'pgm' can be set as the background. # However, these images will not scale with the size of the calendar. # remember to call your mainloop function so that the tkinter window is persistent root.mainloop() ``` Note: if no 'pos_x' or 'pos_y' parameters are given, the Calendar widget will default to using the standard pack function. ----- ## Example 2 - Binding a command to the calendar ----- ```python # the 'Calendar_Click' function retrives the date selected on the Calendar by the user, and prints the date to the console def Calendar_Click(): print(Calendar.getdate()) # create the calendar widget Calendar = Calendar(root, pos_x = 0, pos_y = 0, background = 'lightblue', command = Calendar_Click # link the 'Calendar_Click' function to the widget ) ``` Note: Only a single command can be linked to the calendar widget. ----- # Widget Parameters - functionality and styling The table below specifies opitons availiable for styling and other operations associated with the calendar widget | options | description | | ------- | ----------- | | width= | Sets the width of the widget in pixels. The default width is 300px. <br> Example: ``` Calendar = Calendar(root, width=350) ``` | | height= | Sets the height of the widget in pixels. The default height is 200px. <br> Example: ``` Calendar = Calendar(root, height=200) ``` | | padding= | Sets the internal padding of the calendar widget. The default padding is set to 10px. <br> Example: ``` Calendar = Calendar(root, padding=15) ``` | pos_x= | Sets the x coordinate position of the widget within the window. Note: In tkinter, this is always the top left corner. <br> Example: ``` Calendar = Calendar(root, pos_x=0) ``` | | pos_y= | Sets the y coordinate position of the widget within the window. Note: In tkinter, this is always the top left corner. <br> Example: ``` Calendar = Calendar(root, pos_y=0) ``` | | style= | Set the style="Dark" for the dark theme. If no styling is specified the Calendar will inherit its default white theme. <br> Example: ``` Calendar = Calendar(root, style='Dark') ``` | | command= | A function to be called when the widget is clicked. <br> Example: ``` Calendar = Calendar(root, command=my_function) ``` | | background= | Sets the background of the Calendar to a valid tkinter colour or image (png, gif, ppm, pgm). <br> Example: ``` Calendar = Calendar(root, background='sky.png') ``` | | img_pos_x= | Set the x coordinate of the background image if specified (by default, this is the top left corner). <br> Example: ``` Calendar = Calendar(root, background='sky.png', img_pos_x=0) ``` | | img_pos_y= | Set the y coordinate of the background image if specified (by default, this is the top left corner). <br> Example: ``` Calendar = Calendar(root, background='sky.png', img_pos_y=0) ``` | | img_anchor= | Set the anchor of the background image if specified (by default, this is set to 'nw' - the top left corner). <br> Example: ``` Calendar = Calendar(root, background='sky.png', img_pos_x=0, img_pos_y=0, img_anchor='ne') ``` | | arrow_box_border= | Sets the border colour of the box containing the arrows for selecting previous and following months. <br> Example: ``` Calendar = Calendar(root, arrow_box_border='blue') ``` | | arrow_box_fill= | Sets the background of the box containing the arrows for selecting previous and following months. <br> Example: ``` Calendar = Calendar(root, arrow_box_fill='red') ``` | | arrow_box_width= | Sets the line width of the box containing the arrows for selecting previous and following months. <br> Example: ``` Calendar = Calendar(root, arrow_box_width=3) ``` | | date_box_fill= | Sets the colour inside of the boxes that make up the monthly calendar grid. <br> Example: ``` Calendar = Calendar(root, date_box_fill='purple') ``` | | date_box_width= | Sets the width of the line used to create the grid for the monthly calendar. <br> Example: ``` Calendar = Calendar(root, date_box_width=5) ``` | | date_boxes_outline= | Sets the colour of the box outline for the boxes that make up the monthly claendar grid. <br> Example: ``` Calendar = Calendar(root, date_boxes_outline='lime') ``` | | arrow_outline= | Sets the colour for the outline of the polygon (i.e - triangle) that represents the calendar arrows. <br> Example: ``` Calendar = Calendar(root, arrow_outline='lightblue') ``` | | arrow_fill= | Sets the colour of the calendar arrows. <br> Example: ``` Calendar = Calendar(root, arrow_fill='navy') ``` | | arrow_thickness= | Sets the thickness of the calendar arrows. <br> Example: ``` Calendar = Calendar(root, arrow_thickness=5) ``` | | arrow_active= | Sets the colour for the active highlight when the mouse hovers over the calendar arrows. <br> Example: ``` Calendar = Calendar(root, arrow_active='magenta') ``` | | weekday_border= | Sets the colour for the outline of the boxes that hold the weekday headings. <br> Example: ``` Calendar = Calendar(root, weekday_border='blue') ``` | | weekday_fill= | Sets the colour for the background of the boxes that hold the weekday headings. <br> Example: ``` Calendar = Calendar(root, weekday_fill='gray') ``` | | weekday_width= | Sets the width of the boxes that hold the weekday headings. <br> Example: ``` Calendar = Calendar(root, weekday_width=3) ``` | | weekday_font_fill= | Sets the colour of the text associated with the weekday headings. <br> Example: ``` Calendar = Calendar(root, weekday_font_fill='red') ``` | | weekday_font_family= | Sets the type of font used to create the weekday headings. (Accepts any of the valid native tkinter fonts). <br> Example: ``` Calendar = Calendar(root, weekday_font_family='Georgia') ``` | | weekday_font_weight= | Sets the weight of the font used to create the weekday headings. Valid options are 'normal' or 'bold'. <br> Example: ``` Calendar = Calendar(root, weekday_font_family='bold') ``` | | weekday_font_slant= | Sets the slant of the font used to create the weekday headings. Valid options are 'roman' or 'italic'. <br> Example: ``` Calendar = Calendar(root, weekday_font_slant='italic') ``` | | weekday_font_underline= | Sets the underline of the font used to creates the weekday heading. Valid options are True or False. <br> Example: ``` Calendar = Calendar(root, weekday_font_underline=True) ``` | | weekday_font_size= | Sets the font size of the weekday headings. Note: this overrides the default size and scaling of the font. <br> Example: ``` Calendar = Calendar(root, weekday_font_size=10) ``` | | calendar_date_title= | Sets the colour of the text associated with the calendar title (ex: Aug 2020). <br> Example: ``` Calendar = Calendar(root, calendar_date_title='red') ``` | | date_heading_font_family= | Sets the font type for the Calendar date heading. (Accepts any of the valid native tkinter fonts). <br> Example: ``` Calendar = Calendar(root, date_heading_font_family='Helvetica') ``` | | date_heading_font_weight= | Sets the weight of the font used to create the Calendar date heading. Valid options are 'normal' or 'bold'. <br> Example: ``` Calendar = Calendar(root, date_heading_font_weight='bold') ``` | | date_heading_font_slant= | Sets the slant of the font used to create the Calendar date heading. Valid options are 'roman' or 'italic'. <br> Example: ``` Calendar = Calendar(root, date_heading_font_slant='italic') ``` | | date_heading_font_underline= | Sets the underline of the font used to create the Calendar date heading. Valid options are True or False. <br> Example: ``` Calendar = Calendar(root, date_heading_font_underline=True) ``` | | date_heading_font_size= | Sets the font size used to create the Calendar heading. Note: This overrides the default size and scaling of the font. <br> Example: ``` Calendar = Calendar(root, date_heading_font_size=15) ``` | | date_text_fill= | Sets the colour of the text numbers associated with the month dates. <br> Example: ``` Calendar = Calendar(root, date_text_fill='green') ``` | | date_text_font_family= | Sets the font type used to create the month dates. (Accepts any of the valid native tkinter fonts). <br> Example: ``` Calendar = Calendar(root, date_text_font_family='Georgia') ``` | | date_text_font_weight= | Sets the weight of the font used to create the month dates. Valid options are 'normal' or 'bold'. <br> Example: ``` Calendar = Calendar(root, date_text_font_weight='bold') ``` | | date_text_font_slant= | Sets the slant of the font used to create the month dates. Valid options are 'roman' or 'italic'. <br> Example: ``` Calendar = Calendar(root, date_text_font_slant='italic') ``` | | date_text_font_underline= | Sets the underline of the font used to create the month dates. Valid options are True or False. <br> Example: ``` Calendar = Calendar(root, date_text_font_underline=True) ``` | | date_text_font_size= | Sets the font size of the dates on the Calendar month grid. Note: this overrides the default size and scaling of the font. <br> Example: ``` Calendar = Calendar(root, date_text_font_size=10) ``` | | trail_box_fill= | Sets the colour of the background of the date boxes that trail into the previous and following months. <br> Example: ``` Calendar = Calendar(root, trail_box_fill='lime') ``` | | trail_text_fill= | Sets the colour of the text numbers associated with the trailing date boxes. <br> Example: ``` Calendar = Calendar(root, trail_text_fill='blue') ``` | | current_date_highlight= | Toggles the current date highlight on/off. This parameter accepts a True or False value. Example: ``` Calendar = Calendar(root, current_date_highlight=False) ``` | | date_highlight= | Sets the colour of the permanent date highlight associated with the current date retrieved from the OS. <br> Example: ``` Calendar = Calendar(root, date_highlight='red') ``` | | text_highlight_fill= | Sets the colour of the text associated with the permanent date highlight. <br> Example: ``` Calendar = Calendar(root, text_highlight_fill='pink') ``` | | user_highlight_colour= | Sets the colour of the highlight that is created when the user clicks on a month date. <br> Example: ``` Calendar = Calendar(root, user_highlight_colour='magenta') ``` | | user_highlight_text= | Sets the colour of the text associated with the user highlight. <br> Example: ``` Calendar = Calendar(root, user_highlight_text='blue') ``` |


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl calendar-widget-1.0.8:

    pip install calendar-widget-1.0.8.whl


نصب پکیج tar.gz calendar-widget-1.0.8:

    pip install calendar-widget-1.0.8.tar.gz