Metadata-Version: 2.1
Name: my_custom_messagebox
Version: 1.3.2
Summary: A custom messagebox package for Tkinter applications.
Home-page: https://your.url.here
Author: Dean
Author-email: s770207@yahoo.com.tw
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: Pillow

# **my_custom_messagebox**

*A modern and fully customizable Messagebox for Tkinter, a must-have extension pack!*

## Features

- Customize all elements inside the messagebox
- Add custom icons or images
- Add multiple options according to your wish
- No ugly looking header or borders
- Comes with default icons
- Spawns at center of the screen/app
- Draggable window
- Fade-in/Fade-out window effect

## Installation

```sh
pip install my_custom_messagebox

----------------------------------------------------------------------

How it looks?
Information Message Box

Warning Message Box

Error Message Box

Pinter Message Box

Self Define Message Box 


Example Program

from my_custom_messagebox.cs_messagebox import cs_mb, cs_string, cs_yn, cs_yn_for_printer, cs_info, cs_error, cs_warning

my_custom_messagebox.cs_messabebox #(主函數)
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/cs_all_messagebox.png)
![image](https://raw.githubusercontent.com/Dean7727/Image_place/main/confirm%20delete11.png)
![image](https://raw.githubusercontent.com/Dean7727/Image_place/main/%E7%AB%8B%E9%AB%94info.png)

cs_mb(custom_messagebox) #對話框
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/confirm%20delete.png)

cs_string(custom_string) #對話框
cs_yn(custom_yes_or_no) #是與否
![Image](https://github.com/Dean7727/Image_place/blob/main/confirm%20delete1.png)

cs_yn_for_printer(custom_yes_or_no_for_printer) #是否列印
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/confirm%20delete1.png)

cs_info(custom_information) #資訊
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/info-xxx%E5%B7%B2%E6%88%90%E5%8A%9F%E5%89%B5%E5%BB%BA.png)
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/info1.png)
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/info2.png)

cs_error(custom_error) #錯誤
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/Error-%E8%AB%8B%E6%9B%B8%20%E5%85%A5%E6%9F%A5%E8%A9%A2%E6%A2%9D%E4%BB%B6.png)
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/Error1.png)

cs_warning(custom_warning) #警告
![Image](https://raw.githubusercontent.com/Dean7727/Image_place/main/Warning-%E6%AC%84%E4%BD%8D%E4%B8%8D%E8%83%BD%E5%8C%85%E5%90%AB%E7%A9%BA%E7%99%BD.png)
![image](https://raw.githubusercontent.com/Dean7727/Image_place/main/warning.png)

-------------------------------------------------------------------------------------------------------------------

示例程序(example):

def connect_db():
    config = configparser.ConfigParser()
    config.read('db_config.ini')

    try:
        mydb = mysql.connector.connect(
            host=config.get('DATABASE', 'host'),
            user=config.get('DATABASE', 'user'),
            password=config.get('DATABASE', 'password'),
            database=config.get('DATABASE', 'database')
        )

        return mydb
    except mysql.connector.Error as err:
        cs_error('ERROR', f'無法連接到資料庫: {err}', win)
    return None


def save_to_ini():
    try:
        config = configparser.ConfigParser()
        config.read('db_config.ini')

        if not config.has_section('DATABASE'):
            config.add_section('DATABASE')

        config.set('DATABASE', 'host', host.get())
        config.set('DATABASE', 'user', user.get())
        config.set('DATABASE', 'password', password.get())
        config.set('DATABASE', 'database', database.get())

        with open('db_config.ini', 'w') as configfile:
            config.write(configfile)

        cs_info('INFORMATION', 'Database configuration saved successfully.', win)
    except Exception as e:
        cs_error('ERROR', f'Failed to save database configuration: {e}'



def insert_data(single_insertion=True, multiple_data=None):
    try:
        if single_insertion:
            serial = clean_input(aaa.get())
            type_ = clean_input(bbb.get())
            user = clean_input(ccc.get())
            used = clean_input(ddd.get())
            remark = clean_input(eee.get())

            valid, message = validate_fields(serial, type_, user, used, remark)
            if not valid:
                cs_warning('WARNING', message, win)
                return


def printer(widget):
    try:
        if platform.system() == "Windows":
            printer_name = cs_string("列印", "請輸入列印機名稱：", initialvalue=win32print.GetDefaultPrinter())
            if printer_name:
                confirm = cs_yn_for_printer("確認列印", f"確定要使用列印機 {printer_name} 進行列印嗎？")
                if confirm:
                    x = win.winfo_rootx()
                    y = win.winfo_rooty()
                    width = x + win.winfo_width()
                    height = y + win.winfo_height()
                    image = ImageGrab.grab().crop((x, y, width, height))
                    image.save("temp_print_image.png")
                    win32api.ShellExecute(0, "print", "temp_print_image.png", f'/d:"{printer_name}"', ".", 0)

                    cs_info("INFORMATION", "列印成功", win)
                else:
                    cs_info("INFORMATION", "取消列印", win)
        else:  # For Linux
            conn = cups.Connection()
            printers = conn.getPrinters()
            printer_name = cs_string("列印", "請輸入列印機名稱：", initialvalue=list(printers.keys())[0])
            if printer_name:
                confirm = cs_yn_for_printer("確認列印", f"確定要使用列印機 {printer_name} 進行列印嗎？")
                if confirm:
                    x = win.winfo_rootx()
                    y = win.winfo_rooty()
                    width = x + win.winfo_width()
                    height = y + win.winfo_height()
                    image = ImageGrab.grab().crop((x, y, width, height))
                    image.save("temp_print_image.png")
                    conn.printFile(printer_name, "temp_print_image.png", "Title", {})

                    cs_info("INFORMATION", "列印成功", win)
                else:
                    cs_info("INFORMATION", "取消列印", win)
    except Exception as e:
        cs_error("ERROR", f"列印過程中出現錯誤：{e}", win)
----------------------------------------------------------------------

Options
Parameter	Description
master	Set parent window (optional)
width	Width of the window in px (optional)
height	Height of the window in px (optional)
fg_color	Foreground color of the messagebox [middle portion]
bg_color	Background color of the messagebox
title	Title of the messagebox
message	Main message of the messagebox
option_1	Text on the first button [Default is 'OK']
option_2	Text on the second button
option_3	Text on the third button
button_color	Color of the buttons
text_color	Color of the message text
title_color	Color of the title text
button_text_color	Color of the button text
button_hover_color	Hover color of the buttons
button_width	Width of the buttons in px
button_height	Height of the buttons in px
border_width	Width of the border around the main frame [Default is 1]
border_color	Color of the frame border
icon	Icon that will be shown in the messagebox [Default is the 'info' icon]
icon_size	Size of the icon image
corner_radius	Corner roundness of the messagebox window
font	Font of the messagebox text
header	Add the original header back if you don't like overrideredirect (bool)
topmost	Disable the topmost window outside the app (bool)
sound	Enable the system bell sound when the window pops up (bool)
justify	Position the buttons to center/right/left
focus_option	Select an option by default when Enter key is pressed
fade_in_duration	Enable a fade-in and fade-out animation (int, default is 0)
