Python を使用して ChatGPT を呼び出し、Tkinter ベースのデスクトップ時計を開発するにはどうすればよいですか?

WBOY
リリース: 2023-05-08 21:10:13
転載
1316 人が閲覧しました

説明

ChatGPT の説明内容:

Python はデスクトップに動的テキストを表示し、ウィンドウの境界線を表示しません。ウィンドウの背景とラベルの背景は両方とも透明ですが、ラベル内のテキストは色付きです。これは tkinter ライブラリを使用して実装され、ユーザーがコンテンツを拡張および開発しやすいようにクラスの形式で記述されています。

デフォルトでは、ウィンドウは画面の中央に表示されます。ウィンドウ内のラベルには 2 つの内容が含まれている必要があります。 1 つは、現在の日付と時刻をミリ秒単位の精度でリアルタイムに表示するために使用されます。 txtファイルから別の項目を読み込んで表示しますが、txtファイルがない場合は「なし」と表示されます。

ロックが解除された状態では、マウスでウィンドウをドラッグできます。ロック状態では、ウィンドウをマウスでドラッグして移動することはできません。ウィンドウに「ロック」ボタンを追加します。マウスをウィンドウ上に移動すると「ロック」ボタンが表示され、マウスを離すと「ロック」ボタンが非表示になります。 「ロック」ボタンを押すとウィンドウがロック状態になります。ロック状態では、マウスをウィンドウ上に移動すると「ロック解除」ボタンが表示され、マウスを離すと「ロック解除」ボタンが非表示になります。 「ロック解除」ボタンをクリックしてロック解除状態に入ります。ロック状態とアンロック状態が切り替わります。

ウィンドウに右クリック機能を追加します。右クリックメニューの「終了」をクリックしてアプリケーションを終了できます。

ウィンドウ内のコンテンツが中央に表示されます。

コード

若干の調整を加えたコード:

import tkinter as tk
import datetime
import math
import locale
 
# Set the locale to use UTF-8 encoding
locale.setlocale(locale.LC_ALL, 'en_US.utf8')
 
 
class TransparentWindow(tk.Tk):
    def __init__(self, text_file=None):
        super().__init__()
        self.attributes('-alpha', 1) # 设置窗口透明度
        # self.attributes('-topmost', True) # 窗口置顶
        # self.attributes('-transparentcolor', '#000000')
        self.overrideredirect(True) # 去掉窗口边框
        self.locked = False # 初始化锁定状态
        self.mouse_x = 0
        self.mouse_y = 0
        self.config(bg='#000000', highlightthickness=0, bd=0)
        
        
        # 获取屏幕尺寸和窗口尺寸,使窗口居中
        screen_width = self.winfo_screenwidth()
        screen_height = self.winfo_screenheight()
        window_width = 400
        window_height = 100
        x = (screen_width - window_width) // 2
        y = (screen_height - window_height) // 2
        self.geometry('{}x{}+{}+{}'.format(window_width, window_height, x, y))
 
        # 添加日期时间标签
        self.datetime_label = tk.Label(self, text='', font=('Arial', 20), fg='#FFFFFF', bg='#000000')
        self.datetime_label.place(relx=0.5, y=20, anchor='center')
 
        # 提示标签
        self.note_label = tk.Label(self, text='123', font=('Arial', 14), fg='#FFFFFF', bg='#000000')
        self.note_label.place(relx=0.5, y=50, anchor='center')
 
        # 文本标签
        self.text_label = tk.Label(self, text='', font=('Arial', 14), fg='#FFFFFF', bg='#000000')
        self.text_label.place(relx=0.5, y=80, anchor='center')
 
        # 添加锁定按钮
        self.lock_button = tk.Button(self, text='锁定', font=('Arial', 10), command=self.toggle_lock)
        self.toggle_lock_button(True)
        self.toggle_lock_button(False)
 
        # 添加解锁按钮
        self.unlock_button = tk.Button(self, text='解除锁定', font=('Arial', 10), command=self.toggle_lock)
        self.toggle_unlock_button(True)
        self.toggle_unlock_button(False)
 
        # 定时更新日期时间标签
        self.update_datetime()
        # 定时更新text标签
        self.update_text_label()
        # 定时更新note标签
        self.update_note_label()
 
        # 绑定鼠标事件
        self.bind(&#39;<Button-1>&#39;, self.on_left_button_down)
        self.bind(&#39;<ButtonRelease-1>&#39;, self.on_left_button_up)
        self.bind(&#39;<B1-Motion>&#39;, self.on_mouse_drag)
        self.bind(&#39;<Enter>&#39;, self.on_mouse_enter)
        self.bind(&#39;<Leave>&#39;, self.on_mouse_leave)
 
        # 创建右键菜单
        self.menu = tk.Menu(self, tearoff=0)
        self.menu.add_command(label="退出", command=self.quit)
        self.bind("<Button-3>", self.show_menu)
 
 
    def toggle_lock_button(self, show=True):
        if show:
            self.lock_button.place(relx=1, rely=0.85, anchor=&#39;e&#39;)
        else:
            self.lock_button.place_forget()
    
    def toggle_unlock_button(self, show=True):
        if show:
            self.unlock_button.place(relx=1, rely=0.85, anchor=&#39;e&#39;)
        else:
            self.unlock_button.place_forget()
 
    def show_menu(self, event):
        self.menu.post(event.x_root, event.y_root)
 
    def update_datetime(self):
        now = datetime.datetime.now().strftime(&#39;%Y-%m-%d     \u270d     %H:%M:%S.%f&#39;)[:-4]
        msg = f&#39;{now}&#39;
        self.datetime_label.configure(text=msg)
        self.after(10, self.update_datetime)
 
    def update_text_label(self):
        now = &#39;小锋学长生活大爆炸&#39;
        self.text_label.configure(text=now)
        self.after(1000, self.update_text_label)
 
    def update_note_label(self):
        # 指定日期,格式为 年-月-日
        specified_start_date = datetime.date(2023, 2, 20)
        specified_end_date = datetime.date(2023, 7, 9)
        today = datetime.date.today()
        # 计算距离指定日期过了多少周
        start_delta = today - specified_start_date
        num_of_weeks = math.ceil(start_delta.days / 7)
        # 计算距离指定日期剩余多少周
        end_delta = specified_end_date - today
        remain_weeks = math.ceil(end_delta.days / 7)
 
        msg = f&#39;当前第{num_of_weeks}周, 剩余{remain_weeks}周({end_delta.days}天)&#39;
        self.note_label.configure(text=msg)
        self.after(1000*60, self.update_note_label)
 
 
    def toggle_lock(self):
        if self.locked:
            self.locked = False
            self.toggle_lock_button(True)
            self.toggle_unlock_button(False)
        else:
            self.locked = True
            self.toggle_lock_button(False)
            self.toggle_unlock_button(True)
 
    def on_left_button_down(self, event):
        self.mouse_x = event.x
        self.mouse_y = event.y
 
    def on_left_button_up(self, event):
        self.mouse_x = 0
        self.mouse_y = 0
 
    def on_mouse_drag(self, event):
        if not self.locked:
            x = self.winfo_x() + event.x - self.mouse_x
            y = self.winfo_y() + event.y - self.mouse_y
            self.geometry(&#39;+{}+{}&#39;.format(x, y))
 
    def on_mouse_leave(self, event):
        self.lock_button.place_forget()
        self.unlock_button.place_forget()
 
    def on_mouse_enter(self, event):
        if not self.locked:
            self.toggle_lock_button(True)
            self.toggle_unlock_button(False)
        else:
            self.toggle_lock_button(False)
            self.toggle_unlock_button(True)
 
 
if __name__ == &#39;__main__&#39;:
    app = TransparentWindow(text_file=&#39;text.txt&#39;)
    app.mainloop()
ログイン後にコピー

以上がPython を使用して ChatGPT を呼び出し、Tkinter ベースのデスクトップ時計を開発するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:yisu.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート