├── .github ├── ISSUE_TEMPLATE │ ├── -bug--------.md │ └── -featurerequest--------.md └── workflows │ ├── CI.yml │ └── release.yml ├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── README_EN.md ├── example ├── 1.png ├── 2.png ├── 4.png ├── 5.png ├── 6.png ├── waifu2x.gif ├── 下载.gif ├── 搜索.gif ├── 漫画详情.gif ├── 登录.gif └── 看图.gif ├── res ├── appimage │ ├── AppRun │ └── PicACG.desktop ├── icon │ ├── Icon.icns │ ├── audio.png │ ├── bubble_r_9.9.png │ ├── cat_forum.jpg │ ├── cat_latest.jpg │ ├── cat_leaderboard.jpg │ ├── cat_random.jpg │ ├── clear_off.png │ ├── clear_on.png │ ├── fold1.png │ ├── fold2.png │ ├── ic_get_app_black_36dp.png │ ├── ic_settings_black_36dp.png │ ├── ico.ico │ ├── icon.ico │ ├── icon_adult.png │ ├── icon_bookmark_off.png │ ├── icon_bookmark_on.png │ ├── icon_comic.png │ ├── icon_comicviewer_nightfilter_on.png │ ├── icon_comment.png │ ├── icon_comment_like.png │ ├── icon_comment_liked.png │ ├── icon_comment_reply.png │ ├── icon_empty.png │ ├── icon_exclamation_error.png │ ├── icon_game_android.png │ ├── icon_game_ios.png │ ├── icon_game_recommend.png │ ├── icon_leave.png │ ├── icon_like.png │ ├── icon_like_off.png │ ├── icon_no_comment.png │ ├── icon_picacg.png │ ├── icon_question_error.png │ ├── icon_success.png │ ├── icon_unknown_error.png │ ├── loading.gif │ ├── loading │ │ ├── loading_1.png │ │ ├── loading_10.png │ │ ├── loading_2.png │ │ ├── loading_3.png │ │ ├── loading_4.png │ │ ├── loading_5.png │ │ ├── loading_6.png │ │ ├── loading_7.png │ │ ├── loading_8.png │ │ └── loading_9.png │ ├── loading2.gif │ ├── loading_gif.gif │ ├── loading_gif.webp │ ├── logo_round.png │ ├── new.svg │ ├── nv.png │ ├── placeholder_avatar.png │ ├── shiled.svg │ ├── skin_aio_friend_bubble_pressed.9.png │ ├── splash_title_new.png │ ├── svip.png │ ├── upload.svg │ ├── verified.png │ ├── vip.png │ └── waifu2x.svg ├── images.qrc ├── theme │ ├── dark_pink.qss │ ├── dark_pink.rcc │ ├── dark_pink │ │ ├── disabled │ │ │ ├── base.svg │ │ │ ├── branch-closed.svg │ │ │ ├── branch-end.svg │ │ │ ├── branch-more.svg │ │ │ ├── branch-open.svg │ │ │ ├── checkbox_checked.svg │ │ │ ├── checkbox_checked_invert.svg │ │ │ ├── checkbox_indeterminate.svg │ │ │ ├── checkbox_indeterminate_invert.svg │ │ │ ├── checkbox_unchecked.svg │ │ │ ├── checkbox_unchecked_invert.svg │ │ │ ├── checklist.svg │ │ │ ├── checklist_indeterminate.svg │ │ │ ├── checklist_indeterminate_invert.svg │ │ │ ├── checklist_invert.svg │ │ │ ├── close.svg │ │ │ ├── downarrow.svg │ │ │ ├── downarrow2.svg │ │ │ ├── float.svg │ │ │ ├── leftarrow.svg │ │ │ ├── leftarrow2.svg │ │ │ ├── radiobutton_checked.svg │ │ │ ├── radiobutton_checked_invert.svg │ │ │ ├── radiobutton_unchecked.svg │ │ │ ├── radiobutton_unchecked_invert.svg │ │ │ ├── rightarrow.svg │ │ │ ├── rightarrow2.svg │ │ │ ├── sizegrip.svg │ │ │ ├── slider.svg │ │ │ ├── splitter-horizontal.svg │ │ │ ├── splitter-vertical.svg │ │ │ ├── tab_close.svg │ │ │ ├── toolbar-handle-horizontal.svg │ │ │ ├── toolbar-handle-vertical.svg │ │ │ ├── uparrow.svg │ │ │ ├── uparrow2.svg │ │ │ └── vline.svg │ │ └── primary │ │ │ ├── base.svg │ │ │ ├── branch-closed.svg │ │ │ ├── branch-end.svg │ │ │ ├── branch-more.svg │ │ │ ├── branch-open.svg │ │ │ ├── checkbox_checked.svg │ │ │ ├── checkbox_checked_invert.svg │ │ │ ├── checkbox_indeterminate.svg │ │ │ ├── checkbox_indeterminate_invert.svg │ │ │ ├── checkbox_unchecked.svg │ │ │ ├── checkbox_unchecked_invert.svg │ │ │ ├── checklist.svg │ │ │ ├── checklist_indeterminate.svg │ │ │ ├── checklist_indeterminate_invert.svg │ │ │ ├── checklist_invert.svg │ │ │ ├── close.svg │ │ │ ├── downarrow.svg │ │ │ ├── downarrow2.svg │ │ │ ├── float.svg │ │ │ ├── leftarrow.svg │ │ │ ├── leftarrow2.svg │ │ │ ├── radiobutton_checked.svg │ │ │ ├── radiobutton_checked_invert.svg │ │ │ ├── radiobutton_unchecked.svg │ │ │ ├── radiobutton_unchecked_invert.svg │ │ │ ├── rightarrow.svg │ │ │ ├── rightarrow2.svg │ │ │ ├── sizegrip.svg │ │ │ ├── slider.svg │ │ │ ├── splitter-horizontal.svg │ │ │ ├── splitter-vertical.svg │ │ │ ├── tab_close.svg │ │ │ ├── toolbar-handle-horizontal.svg │ │ │ ├── toolbar-handle-vertical.svg │ │ │ ├── uparrow.svg │ │ │ ├── uparrow2.svg │ │ │ └── vline.svg │ ├── dark_teal.qrc │ ├── dark_teal.qss │ ├── light_pink.qss │ ├── light_pink.rcc │ ├── light_pink │ │ ├── disabled │ │ │ ├── base.svg │ │ │ ├── branch-closed.svg │ │ │ ├── branch-end.svg │ │ │ ├── branch-more.svg │ │ │ ├── branch-open.svg │ │ │ ├── checkbox_checked.svg │ │ │ ├── checkbox_checked_invert.svg │ │ │ ├── checkbox_indeterminate.svg │ │ │ ├── checkbox_indeterminate_invert.svg │ │ │ ├── checkbox_unchecked.svg │ │ │ ├── checkbox_unchecked_invert.svg │ │ │ ├── checklist.svg │ │ │ ├── checklist_indeterminate.svg │ │ │ ├── checklist_indeterminate_invert.svg │ │ │ ├── checklist_invert.svg │ │ │ ├── close.svg │ │ │ ├── downarrow.svg │ │ │ ├── downarrow2.svg │ │ │ ├── float.svg │ │ │ ├── leftarrow.svg │ │ │ ├── leftarrow2.svg │ │ │ ├── radiobutton_checked.svg │ │ │ ├── radiobutton_checked_invert.svg │ │ │ ├── radiobutton_unchecked.svg │ │ │ ├── radiobutton_unchecked_invert.svg │ │ │ ├── rightarrow.svg │ │ │ ├── rightarrow2.svg │ │ │ ├── sizegrip.svg │ │ │ ├── slider.svg │ │ │ ├── splitter-horizontal.svg │ │ │ ├── splitter-vertical.svg │ │ │ ├── tab_close.svg │ │ │ ├── toolbar-handle-horizontal.svg │ │ │ ├── toolbar-handle-vertical.svg │ │ │ ├── uparrow.svg │ │ │ ├── uparrow2.svg │ │ │ └── vline.svg │ │ └── primary │ │ │ ├── base.svg │ │ │ ├── branch-closed.svg │ │ │ ├── branch-end.svg │ │ │ ├── branch-more.svg │ │ │ ├── branch-open.svg │ │ │ ├── checkbox_checked.svg │ │ │ ├── checkbox_checked_invert.svg │ │ │ ├── checkbox_indeterminate.svg │ │ │ ├── checkbox_indeterminate_invert.svg │ │ │ ├── checkbox_unchecked.svg │ │ │ ├── checkbox_unchecked_invert.svg │ │ │ ├── checklist.svg │ │ │ ├── checklist_indeterminate.svg │ │ │ ├── checklist_indeterminate_invert.svg │ │ │ ├── checklist_invert.svg │ │ │ ├── close.svg │ │ │ ├── downarrow.svg │ │ │ ├── downarrow2.svg │ │ │ ├── float.svg │ │ │ ├── leftarrow.svg │ │ │ ├── leftarrow2.svg │ │ │ ├── radiobutton_checked.svg │ │ │ ├── radiobutton_checked_invert.svg │ │ │ ├── radiobutton_unchecked.svg │ │ │ ├── radiobutton_unchecked_invert.svg │ │ │ ├── rightarrow.svg │ │ │ ├── rightarrow2.svg │ │ │ ├── sizegrip.svg │ │ │ ├── slider.svg │ │ │ ├── splitter-horizontal.svg │ │ │ ├── splitter-vertical.svg │ │ │ ├── tab_close.svg │ │ │ ├── toolbar-handle-horizontal.svg │ │ │ ├── toolbar-handle-vertical.svg │ │ │ ├── uparrow.svg │ │ │ ├── uparrow2.svg │ │ │ └── vline.svg │ ├── light_teal.qrc │ ├── light_teal.qss │ ├── scrollbar │ │ ├── scrollbar_arrowdown_down.png │ │ ├── scrollbar_arrowdown_highlight.png │ │ ├── scrollbar_arrowdown_normal.png │ │ ├── scrollbar_arrowleft_down.png │ │ ├── scrollbar_arrowleft_highlight.png │ │ ├── scrollbar_arrowleft_normal.png │ │ ├── scrollbar_arrowright_down.png │ │ ├── scrollbar_arrowright_highlight.png │ │ ├── scrollbar_arrowright_normal.png │ │ ├── scrollbar_arrowup_down.png │ │ ├── scrollbar_arrowup_highlight.png │ │ ├── scrollbar_arrowup_normal.png │ │ ├── scrollbar_bar_highlight.png │ │ ├── scrollbar_bar_normal.png │ │ ├── scrollbar_bkg.png │ │ ├── scrollbar_horzbar_down.png │ │ ├── scrollbar_horzbar_highlight.png │ │ └── scrollbar_horzbar_normal.png │ └── svg │ │ ├── user_comment.svg │ │ └── user_favority.svg ├── title_bar │ ├── black_close_button_57_40.png │ ├── black_down_button_57_40.png │ ├── black_max_button_57_40.png │ ├── black_max_button_pressed_57_40.png │ ├── black_min_button_57_40.png │ ├── black_min_button_pressed_57_40.png │ ├── black_return_button_60_40.png │ ├── black_return_button_hover_60_40.png │ ├── black_return_button_pressed_60_40.png │ ├── close_button_hover_57_40.png │ ├── close_button_pressed_57_40.png │ ├── down_button_pressed_57_40.png │ ├── green_down_button_hover_57_40.png │ ├── green_max_button_hover_57_40.png │ ├── green_min_button_hover_57_40.png │ ├── open_black_close_button_57_40.png │ ├── open_black_max_button_57_40.png │ ├── open_black_min_button_57_40.png │ ├── open_white_close_button_57_40.png │ ├── white_close_button_57_40.png │ ├── white_down_57_40.png │ ├── white_down_button_57_40.png │ ├── white_max_button_57_40.png │ ├── white_min_button_57_40.png │ ├── white_return_button_60_40.png │ ├── white_return_button_hover_60_40.png │ └── white_return_button_pressed_60_40.png └── tr │ ├── tr_en.qm │ └── tr_hk.qm ├── script ├── build_qrc.py ├── build_translate.py ├── build_ui.py └── build_universal2.py ├── src ├── component │ ├── __init__.py │ ├── box │ │ ├── __init__.py │ │ ├── wheel_combo_box.py │ │ ├── wheel_double_spin_box.py │ │ ├── wheel_slider.py │ │ └── wheel_spin_box.py │ ├── button │ │ ├── __init__.py │ │ ├── icon_tool_button.py │ │ └── switch_button.py │ ├── dialog │ │ ├── __init__.py │ │ ├── base_mask_dialog.py │ │ ├── loading_dialog.py │ │ └── show_close_dialog.py │ ├── label │ │ ├── __init__.py │ │ ├── auto_picture_label.py │ │ ├── gif_group_label.py │ │ ├── gif_label.py │ │ ├── head_label.py │ │ └── msg_label.py │ ├── layout │ │ ├── __init__.py │ │ └── flow_layout.py │ ├── line_edit │ │ ├── __init__.py │ │ └── search_line_edit.py │ ├── list │ │ ├── __init__.py │ │ ├── base_list_widget.py │ │ ├── category_list_widget.py │ │ ├── comic_list_widget.py │ │ ├── eps_list_widget.py │ │ ├── search_setting_item_widget.py │ │ ├── tag_list_widget.py │ │ └── user_list_widget.py │ ├── progress_bar │ │ ├── __init__.py │ │ └── dwater_progress_bar.py │ ├── scroll │ │ ├── __init__.py │ │ ├── read_scroll.py │ │ ├── smooth_scroll.py │ │ └── smooth_scroll_bar.py │ ├── scroll_area │ │ ├── __init__.py │ │ └── smooth_scroll_area.py │ ├── system_tray_icon │ │ ├── __init__.py │ │ └── my_system_tray_icon.py │ ├── tab │ │ ├── __init__.py │ │ └── base_table_widget.py │ └── widget │ │ ├── __init__.py │ │ ├── animation_stack_widget.py │ │ ├── com_widget.py │ │ ├── comic_item_widget.py │ │ ├── comment_item_widget.py │ │ ├── comment_widget.py │ │ ├── main_widget.py │ │ ├── nas_item_widget.py │ │ ├── navigation_widget.py │ │ ├── qframelesswindow │ │ ├── __init__.py │ │ ├── _rc │ │ │ ├── __init__.py │ │ │ ├── resource.py │ │ │ ├── resource.qrc │ │ │ └── title_bar │ │ │ │ └── close.svg │ │ ├── demo.py │ │ ├── linux │ │ │ ├── __init__.py │ │ │ └── window_effect.py │ │ ├── mac │ │ │ ├── __init__.py │ │ │ └── window_effect.py │ │ ├── titlebar │ │ │ ├── __init__.py │ │ │ └── title_bar_buttons.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── linux_utils.py │ │ │ ├── mac_utils.py │ │ │ └── win32_utils.py │ │ └── windows │ │ │ ├── __init__.py │ │ │ ├── c_structures.py │ │ │ └── window_effect.py │ │ ├── setting_item_widget.py │ │ ├── title_bar_widget.py │ │ └── windows │ │ ├── __init__.py │ │ ├── c_structures.py │ │ ├── frame_less_widget.py │ │ └── window_effect.py ├── config │ ├── __init__.py │ ├── config.py │ ├── global_config.py │ └── setting.py ├── db │ └── book.db ├── images_rc.py ├── interface │ ├── __init__.py │ ├── ui_batch_sr.py │ ├── ui_book_eps.py │ ├── ui_book_info.py │ ├── ui_book_right.py │ ├── ui_book_rightui.py │ ├── ui_category.py │ ├── ui_change_password_widget.py │ ├── ui_chat.py │ ├── ui_chat_new_room_msg.py │ ├── ui_chat_room.py │ ├── ui_chat_room_msg.py │ ├── ui_comic_item.py │ ├── ui_comment.py │ ├── ui_comment_item.py │ ├── ui_convert.py │ ├── ui_convert_item.py │ ├── ui_download.py │ ├── ui_download_all.py │ ├── ui_download_dir.py │ ├── ui_exit.py │ ├── ui_favorite.py │ ├── ui_forbid_words.py │ ├── ui_fried.py │ ├── ui_fried_msg.py │ ├── ui_game.py │ ├── ui_game_info.py │ ├── ui_help.py │ ├── ui_help_log_widget.py │ ├── ui_history.py │ ├── ui_index.py │ ├── ui_line_edit_help_widget.py │ ├── ui_local.py │ ├── ui_local_all.py │ ├── ui_local_eps.py │ ├── ui_local_favorite.py │ ├── ui_local_fold.py │ ├── ui_login.py │ ├── ui_login_proxy_widget.py │ ├── ui_login_widget.py │ ├── ui_main.py │ ├── ui_main_windows.py │ ├── ui_nas.py │ ├── ui_nas_add.py │ ├── ui_nas_item.py │ ├── ui_navigation.py │ ├── ui_rank.py │ ├── ui_read_tool.py │ ├── ui_register.py │ ├── ui_register_widget.py │ ├── ui_search.py │ ├── ui_setting_new.py │ ├── ui_sr_select_widget.py │ ├── ui_sub_comment.py │ ├── ui_title_bar.py │ └── ui_waifu2x_tool.py ├── qt_error.py ├── qt_owner.py ├── requirements.txt ├── requirements_macos.txt ├── requirements_nosr.txt ├── requirements_win7.txt ├── server │ ├── __init__.py │ ├── req.py │ ├── res.py │ ├── server.py │ ├── sql_server.py │ └── user_handler.py ├── start.py ├── task │ ├── __init__.py │ ├── qt_task.py │ ├── task_convert.py │ ├── task_convert_epub.py │ ├── task_convert_zip.py │ ├── task_download.py │ ├── task_http.py │ ├── task_local.py │ ├── task_qimage.py │ ├── task_sql.py │ ├── task_upload.py │ ├── task_waifu2x.py │ ├── upload_local.py │ ├── upload_smb.py │ └── upload_webdav.py ├── test │ └── __init__.py ├── tools │ ├── __init__.py │ ├── book.py │ ├── category.py │ ├── langconv.py │ ├── log.py │ ├── singleton.py │ ├── status.py │ ├── str.py │ ├── tool.py │ ├── user.py │ └── zh_wiki.py └── view │ ├── __init__.py │ ├── category │ ├── __init__.py │ ├── category_view.py │ └── rank_view.py │ ├── chat │ ├── __init__.py │ ├── chat_msg_widget.py │ ├── chat_room_widget.py │ ├── chat_view.py │ └── chat_websocket.py │ ├── chat_new │ ├── __init__.py │ ├── chat_new_msg_widget.py │ ├── chat_new_room_widget.py │ ├── chat_new_view.py │ └── chat_new_websocket.py │ ├── comment │ ├── __init__.py │ ├── comment_view.py │ ├── fried_comment_view.py │ ├── game_comment_view.py │ ├── my_comment_view.py │ └── sub_comment_view.py │ ├── convert │ ├── __init__.py │ ├── convert_db.py │ ├── convert_item.py │ ├── convert_status.py │ └── convert_view.py │ ├── download │ ├── __init__.py │ ├── download_all_item.py │ ├── download_all_view.py │ ├── download_db.py │ ├── download_dir_view.py │ ├── download_item.py │ ├── download_status.py │ └── download_view.py │ ├── fried │ ├── __init__.py │ ├── fried_view.py │ └── qt_fried_msg.py │ ├── game │ ├── __init__.py │ └── game_view.py │ ├── help │ ├── __init__.py │ ├── help_log_widget.py │ └── help_view.py │ ├── index │ ├── __init__.py │ └── index_view.py │ ├── info │ ├── __init__.py │ ├── book_eps_view.py │ ├── book_info_right.py │ ├── book_info_view.py │ └── game_info_view.py │ ├── main │ ├── __init__.py │ └── main_view.py │ ├── nas │ ├── __init__.py │ ├── nas_add_view.py │ ├── nas_db.py │ ├── nas_item.py │ ├── nas_status.py │ └── nas_view.py │ ├── read │ ├── __init__.py │ ├── read_enum.py │ ├── read_frame.py │ ├── read_graphics.py │ ├── read_opengl.py │ ├── read_pool.py │ ├── read_proxy.py │ ├── read_qgraphics_proxy_widget.py │ ├── read_tool.py │ └── read_view.py │ ├── search │ ├── __init__.py │ ├── search_bar.py │ └── search_view.py │ ├── setting │ ├── __init__.py │ ├── setting_sr_select_view.py │ └── setting_view.py │ ├── tool │ ├── __init__.py │ ├── batch_sr_tool_db.py │ ├── batch_sr_tool_view.py │ ├── forbid_words_view.py │ ├── local_eps_read_view.py │ ├── local_fold_view.py │ ├── local_read_all_view.py │ ├── local_read_db.py │ ├── local_read_eps_view.py │ ├── local_read_view.py │ └── waifu2x_tool_view.py │ └── user │ ├── __init__.py │ ├── change_password_widget.py │ ├── favorite_view.py │ ├── history_view.py │ ├── login_proxy_widget.py │ ├── login_view.py │ ├── login_widget.py │ └── register_widget.py ├── translate ├── str_en.ts ├── str_hk.ts ├── ui_en.ts └── ui_hk.ts └── ui ├── component ├── ui_book_right.ui ├── ui_book_rightui.ui ├── ui_change_password_widget.ui ├── ui_chat_new_room_msg.ui ├── ui_chat_room.ui ├── ui_chat_room_msg.ui ├── ui_comic_item.ui ├── ui_comment_item.ui ├── ui_download_dir.ui ├── ui_exit.ui ├── ui_forbid_words.ui ├── ui_fried_msg.ui ├── ui_help_log_widget.ui ├── ui_line_edit_help_widget.ui ├── ui_local_fold.ui ├── ui_login_proxy_widget.ui ├── ui_login_widget.ui ├── ui_nas_item.ui ├── ui_navigation.ui ├── ui_read_tool.ui ├── ui_register_widget.ui ├── ui_sr_select_widget.ui └── ui_title_bar.ui ├── ui_batch_sr.ui ├── ui_book_eps.ui ├── ui_book_info.ui ├── ui_category.ui ├── ui_chat.ui ├── ui_comment.ui ├── ui_convert.ui ├── ui_convert_item.ui ├── ui_download.ui ├── ui_download_all.ui ├── ui_favorite.ui ├── ui_fried.ui ├── ui_game.ui ├── ui_game_info.ui ├── ui_help.ui ├── ui_history.ui ├── ui_index.ui ├── ui_local.ui ├── ui_local_all.ui ├── ui_local_eps.ui ├── ui_local_favorite.ui ├── ui_login.ui ├── ui_main.ui ├── ui_main_windows.ui ├── ui_nas.ui ├── ui_nas_add.ui ├── ui_rank.ui ├── ui_search.ui ├── ui_setting_new.ui ├── ui_sub_comment.ui └── ui_waifu2x_tool.ui /.github/ISSUE_TEMPLATE/-bug--------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/.github/ISSUE_TEMPLATE/-bug--------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-featurerequest--------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/.github/ISSUE_TEMPLATE/-featurerequest--------.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/README_EN.md -------------------------------------------------------------------------------- /example/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/1.png -------------------------------------------------------------------------------- /example/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/2.png -------------------------------------------------------------------------------- /example/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/4.png -------------------------------------------------------------------------------- /example/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/5.png -------------------------------------------------------------------------------- /example/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/6.png -------------------------------------------------------------------------------- /example/waifu2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/waifu2x.gif -------------------------------------------------------------------------------- /example/下载.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/下载.gif -------------------------------------------------------------------------------- /example/搜索.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/搜索.gif -------------------------------------------------------------------------------- /example/漫画详情.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/漫画详情.gif -------------------------------------------------------------------------------- /example/登录.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/登录.gif -------------------------------------------------------------------------------- /example/看图.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/example/看图.gif -------------------------------------------------------------------------------- /res/appimage/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/appimage/AppRun -------------------------------------------------------------------------------- /res/appimage/PicACG.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/appimage/PicACG.desktop -------------------------------------------------------------------------------- /res/icon/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/Icon.icns -------------------------------------------------------------------------------- /res/icon/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/audio.png -------------------------------------------------------------------------------- /res/icon/bubble_r_9.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/bubble_r_9.9.png -------------------------------------------------------------------------------- /res/icon/cat_forum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/cat_forum.jpg -------------------------------------------------------------------------------- /res/icon/cat_latest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/cat_latest.jpg -------------------------------------------------------------------------------- /res/icon/cat_leaderboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/cat_leaderboard.jpg -------------------------------------------------------------------------------- /res/icon/cat_random.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/cat_random.jpg -------------------------------------------------------------------------------- /res/icon/clear_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/clear_off.png -------------------------------------------------------------------------------- /res/icon/clear_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/clear_on.png -------------------------------------------------------------------------------- /res/icon/fold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/fold1.png -------------------------------------------------------------------------------- /res/icon/fold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/fold2.png -------------------------------------------------------------------------------- /res/icon/ic_get_app_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/ic_get_app_black_36dp.png -------------------------------------------------------------------------------- /res/icon/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /res/icon/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/ico.ico -------------------------------------------------------------------------------- /res/icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon.ico -------------------------------------------------------------------------------- /res/icon/icon_adult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_adult.png -------------------------------------------------------------------------------- /res/icon/icon_bookmark_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_bookmark_off.png -------------------------------------------------------------------------------- /res/icon/icon_bookmark_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_bookmark_on.png -------------------------------------------------------------------------------- /res/icon/icon_comic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_comic.png -------------------------------------------------------------------------------- /res/icon/icon_comicviewer_nightfilter_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_comicviewer_nightfilter_on.png -------------------------------------------------------------------------------- /res/icon/icon_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_comment.png -------------------------------------------------------------------------------- /res/icon/icon_comment_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_comment_like.png -------------------------------------------------------------------------------- /res/icon/icon_comment_liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_comment_liked.png -------------------------------------------------------------------------------- /res/icon/icon_comment_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_comment_reply.png -------------------------------------------------------------------------------- /res/icon/icon_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_empty.png -------------------------------------------------------------------------------- /res/icon/icon_exclamation_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_exclamation_error.png -------------------------------------------------------------------------------- /res/icon/icon_game_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_game_android.png -------------------------------------------------------------------------------- /res/icon/icon_game_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_game_ios.png -------------------------------------------------------------------------------- /res/icon/icon_game_recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_game_recommend.png -------------------------------------------------------------------------------- /res/icon/icon_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_leave.png -------------------------------------------------------------------------------- /res/icon/icon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_like.png -------------------------------------------------------------------------------- /res/icon/icon_like_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_like_off.png -------------------------------------------------------------------------------- /res/icon/icon_no_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_no_comment.png -------------------------------------------------------------------------------- /res/icon/icon_picacg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_picacg.png -------------------------------------------------------------------------------- /res/icon/icon_question_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_question_error.png -------------------------------------------------------------------------------- /res/icon/icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_success.png -------------------------------------------------------------------------------- /res/icon/icon_unknown_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/icon_unknown_error.png -------------------------------------------------------------------------------- /res/icon/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading.gif -------------------------------------------------------------------------------- /res/icon/loading/loading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_1.png -------------------------------------------------------------------------------- /res/icon/loading/loading_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_10.png -------------------------------------------------------------------------------- /res/icon/loading/loading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_2.png -------------------------------------------------------------------------------- /res/icon/loading/loading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_3.png -------------------------------------------------------------------------------- /res/icon/loading/loading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_4.png -------------------------------------------------------------------------------- /res/icon/loading/loading_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_5.png -------------------------------------------------------------------------------- /res/icon/loading/loading_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_6.png -------------------------------------------------------------------------------- /res/icon/loading/loading_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_7.png -------------------------------------------------------------------------------- /res/icon/loading/loading_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_8.png -------------------------------------------------------------------------------- /res/icon/loading/loading_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading/loading_9.png -------------------------------------------------------------------------------- /res/icon/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading2.gif -------------------------------------------------------------------------------- /res/icon/loading_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading_gif.gif -------------------------------------------------------------------------------- /res/icon/loading_gif.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/loading_gif.webp -------------------------------------------------------------------------------- /res/icon/logo_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/logo_round.png -------------------------------------------------------------------------------- /res/icon/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/new.svg -------------------------------------------------------------------------------- /res/icon/nv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/nv.png -------------------------------------------------------------------------------- /res/icon/placeholder_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/placeholder_avatar.png -------------------------------------------------------------------------------- /res/icon/shiled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/shiled.svg -------------------------------------------------------------------------------- /res/icon/skin_aio_friend_bubble_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/skin_aio_friend_bubble_pressed.9.png -------------------------------------------------------------------------------- /res/icon/splash_title_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/splash_title_new.png -------------------------------------------------------------------------------- /res/icon/svip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/svip.png -------------------------------------------------------------------------------- /res/icon/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/upload.svg -------------------------------------------------------------------------------- /res/icon/verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/verified.png -------------------------------------------------------------------------------- /res/icon/vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/vip.png -------------------------------------------------------------------------------- /res/icon/waifu2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/icon/waifu2x.svg -------------------------------------------------------------------------------- /res/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/images.qrc -------------------------------------------------------------------------------- /res/theme/dark_pink.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink.qss -------------------------------------------------------------------------------- /res/theme/dark_pink.rcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink.rcc -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/base.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/branch-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/branch-closed.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/branch-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/branch-end.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/branch-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/branch-more.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/branch-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/branch-open.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checkbox_checked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checkbox_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checkbox_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checkbox_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checkbox_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checkbox_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checkbox_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checkbox_unchecked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checkbox_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checkbox_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checklist.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checklist_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checklist_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checklist_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checklist_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/checklist_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/checklist_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/close.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/downarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/downarrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/downarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/downarrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/float.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/float.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/leftarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/leftarrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/leftarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/leftarrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/radiobutton_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/radiobutton_checked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/radiobutton_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/radiobutton_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/radiobutton_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/radiobutton_unchecked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/radiobutton_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/radiobutton_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/rightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/rightarrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/rightarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/rightarrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/sizegrip.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/slider.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/splitter-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/splitter-horizontal.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/splitter-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/splitter-vertical.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/tab_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/tab_close.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/toolbar-handle-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/toolbar-handle-horizontal.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/toolbar-handle-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/toolbar-handle-vertical.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/uparrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/uparrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/uparrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/uparrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/disabled/vline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/disabled/vline.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/base.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/branch-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/branch-closed.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/branch-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/branch-end.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/branch-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/branch-more.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/branch-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/branch-open.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checkbox_checked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checkbox_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checkbox_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checkbox_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checkbox_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checkbox_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checkbox_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checkbox_unchecked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checkbox_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checkbox_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checklist.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checklist_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checklist_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checklist_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checklist_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/checklist_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/checklist_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/close.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/downarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/downarrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/downarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/downarrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/float.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/float.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/leftarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/leftarrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/leftarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/leftarrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/radiobutton_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/radiobutton_checked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/radiobutton_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/radiobutton_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/radiobutton_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/radiobutton_unchecked.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/radiobutton_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/radiobutton_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/rightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/rightarrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/rightarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/rightarrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/sizegrip.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/slider.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/splitter-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/splitter-horizontal.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/splitter-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/splitter-vertical.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/tab_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/tab_close.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/toolbar-handle-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/toolbar-handle-horizontal.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/toolbar-handle-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/toolbar-handle-vertical.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/uparrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/uparrow.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/uparrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/uparrow2.svg -------------------------------------------------------------------------------- /res/theme/dark_pink/primary/vline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_pink/primary/vline.svg -------------------------------------------------------------------------------- /res/theme/dark_teal.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_teal.qrc -------------------------------------------------------------------------------- /res/theme/dark_teal.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/dark_teal.qss -------------------------------------------------------------------------------- /res/theme/light_pink.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink.qss -------------------------------------------------------------------------------- /res/theme/light_pink.rcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink.rcc -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/base.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/branch-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/branch-closed.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/branch-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/branch-end.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/branch-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/branch-more.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/branch-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/branch-open.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checkbox_checked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checkbox_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checkbox_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checkbox_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checkbox_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checkbox_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checkbox_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checkbox_unchecked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checkbox_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checkbox_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checklist.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checklist_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checklist_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checklist_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checklist_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/checklist_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/checklist_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/close.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/downarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/downarrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/downarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/downarrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/float.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/float.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/leftarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/leftarrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/leftarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/leftarrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/radiobutton_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/radiobutton_checked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/radiobutton_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/radiobutton_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/radiobutton_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/radiobutton_unchecked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/radiobutton_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/radiobutton_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/rightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/rightarrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/rightarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/rightarrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/sizegrip.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/slider.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/splitter-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/splitter-horizontal.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/splitter-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/splitter-vertical.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/tab_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/tab_close.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/toolbar-handle-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/toolbar-handle-horizontal.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/toolbar-handle-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/toolbar-handle-vertical.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/uparrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/uparrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/uparrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/uparrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/disabled/vline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/disabled/vline.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/base.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/branch-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/branch-closed.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/branch-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/branch-end.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/branch-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/branch-more.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/branch-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/branch-open.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checkbox_checked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checkbox_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checkbox_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checkbox_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checkbox_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checkbox_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checkbox_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checkbox_unchecked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checkbox_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checkbox_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checklist.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checklist_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checklist_indeterminate.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checklist_indeterminate_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checklist_indeterminate_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/checklist_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/checklist_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/close.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/downarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/downarrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/downarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/downarrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/float.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/float.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/leftarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/leftarrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/leftarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/leftarrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/radiobutton_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/radiobutton_checked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/radiobutton_checked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/radiobutton_checked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/radiobutton_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/radiobutton_unchecked.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/radiobutton_unchecked_invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/radiobutton_unchecked_invert.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/rightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/rightarrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/rightarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/rightarrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/sizegrip.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/slider.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/splitter-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/splitter-horizontal.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/splitter-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/splitter-vertical.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/tab_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/tab_close.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/toolbar-handle-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/toolbar-handle-horizontal.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/toolbar-handle-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/toolbar-handle-vertical.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/uparrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/uparrow.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/uparrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/uparrow2.svg -------------------------------------------------------------------------------- /res/theme/light_pink/primary/vline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_pink/primary/vline.svg -------------------------------------------------------------------------------- /res/theme/light_teal.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_teal.qrc -------------------------------------------------------------------------------- /res/theme/light_teal.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/light_teal.qss -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowdown_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowdown_down.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowdown_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowdown_highlight.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowdown_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowdown_normal.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowleft_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowleft_down.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowleft_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowleft_highlight.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowleft_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowleft_normal.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowright_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowright_down.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowright_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowright_highlight.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowright_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowright_normal.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowup_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowup_down.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowup_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowup_highlight.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_arrowup_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_arrowup_normal.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_bar_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_bar_highlight.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_bar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_bar_normal.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_bkg.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_horzbar_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_horzbar_down.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_horzbar_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_horzbar_highlight.png -------------------------------------------------------------------------------- /res/theme/scrollbar/scrollbar_horzbar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/scrollbar/scrollbar_horzbar_normal.png -------------------------------------------------------------------------------- /res/theme/svg/user_comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/svg/user_comment.svg -------------------------------------------------------------------------------- /res/theme/svg/user_favority.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/theme/svg/user_favority.svg -------------------------------------------------------------------------------- /res/title_bar/black_close_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_close_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/black_down_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_down_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/black_max_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_max_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/black_max_button_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_max_button_pressed_57_40.png -------------------------------------------------------------------------------- /res/title_bar/black_min_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_min_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/black_min_button_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_min_button_pressed_57_40.png -------------------------------------------------------------------------------- /res/title_bar/black_return_button_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_return_button_60_40.png -------------------------------------------------------------------------------- /res/title_bar/black_return_button_hover_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_return_button_hover_60_40.png -------------------------------------------------------------------------------- /res/title_bar/black_return_button_pressed_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/black_return_button_pressed_60_40.png -------------------------------------------------------------------------------- /res/title_bar/close_button_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/close_button_hover_57_40.png -------------------------------------------------------------------------------- /res/title_bar/close_button_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/close_button_pressed_57_40.png -------------------------------------------------------------------------------- /res/title_bar/down_button_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/down_button_pressed_57_40.png -------------------------------------------------------------------------------- /res/title_bar/green_down_button_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/green_down_button_hover_57_40.png -------------------------------------------------------------------------------- /res/title_bar/green_max_button_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/green_max_button_hover_57_40.png -------------------------------------------------------------------------------- /res/title_bar/green_min_button_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/green_min_button_hover_57_40.png -------------------------------------------------------------------------------- /res/title_bar/open_black_close_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/open_black_close_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/open_black_max_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/open_black_max_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/open_black_min_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/open_black_min_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/open_white_close_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/open_white_close_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/white_close_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_close_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/white_down_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_down_57_40.png -------------------------------------------------------------------------------- /res/title_bar/white_down_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_down_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/white_max_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_max_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/white_min_button_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_min_button_57_40.png -------------------------------------------------------------------------------- /res/title_bar/white_return_button_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_return_button_60_40.png -------------------------------------------------------------------------------- /res/title_bar/white_return_button_hover_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_return_button_hover_60_40.png -------------------------------------------------------------------------------- /res/title_bar/white_return_button_pressed_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/title_bar/white_return_button_pressed_60_40.png -------------------------------------------------------------------------------- /res/tr/tr_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/tr/tr_en.qm -------------------------------------------------------------------------------- /res/tr/tr_hk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/res/tr/tr_hk.qm -------------------------------------------------------------------------------- /script/build_qrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/script/build_qrc.py -------------------------------------------------------------------------------- /script/build_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/script/build_translate.py -------------------------------------------------------------------------------- /script/build_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/script/build_ui.py -------------------------------------------------------------------------------- /script/build_universal2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/script/build_universal2.py -------------------------------------------------------------------------------- /src/component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/box/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/box/wheel_combo_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/box/wheel_combo_box.py -------------------------------------------------------------------------------- /src/component/box/wheel_double_spin_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/box/wheel_double_spin_box.py -------------------------------------------------------------------------------- /src/component/box/wheel_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/box/wheel_slider.py -------------------------------------------------------------------------------- /src/component/box/wheel_spin_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/box/wheel_spin_box.py -------------------------------------------------------------------------------- /src/component/button/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/button/icon_tool_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/button/icon_tool_button.py -------------------------------------------------------------------------------- /src/component/button/switch_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/button/switch_button.py -------------------------------------------------------------------------------- /src/component/dialog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/dialog/base_mask_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/dialog/base_mask_dialog.py -------------------------------------------------------------------------------- /src/component/dialog/loading_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/dialog/loading_dialog.py -------------------------------------------------------------------------------- /src/component/dialog/show_close_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/dialog/show_close_dialog.py -------------------------------------------------------------------------------- /src/component/label/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/label/auto_picture_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/label/auto_picture_label.py -------------------------------------------------------------------------------- /src/component/label/gif_group_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/label/gif_group_label.py -------------------------------------------------------------------------------- /src/component/label/gif_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/label/gif_label.py -------------------------------------------------------------------------------- /src/component/label/head_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/label/head_label.py -------------------------------------------------------------------------------- /src/component/label/msg_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/label/msg_label.py -------------------------------------------------------------------------------- /src/component/layout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/layout/flow_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/layout/flow_layout.py -------------------------------------------------------------------------------- /src/component/line_edit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/line_edit/search_line_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/line_edit/search_line_edit.py -------------------------------------------------------------------------------- /src/component/list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/list/base_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/list/base_list_widget.py -------------------------------------------------------------------------------- /src/component/list/category_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/list/category_list_widget.py -------------------------------------------------------------------------------- /src/component/list/comic_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/list/comic_list_widget.py -------------------------------------------------------------------------------- /src/component/list/eps_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/list/eps_list_widget.py -------------------------------------------------------------------------------- /src/component/list/search_setting_item_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/list/search_setting_item_widget.py -------------------------------------------------------------------------------- /src/component/list/tag_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/list/tag_list_widget.py -------------------------------------------------------------------------------- /src/component/list/user_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/list/user_list_widget.py -------------------------------------------------------------------------------- /src/component/progress_bar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/progress_bar/dwater_progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/progress_bar/dwater_progress_bar.py -------------------------------------------------------------------------------- /src/component/scroll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/scroll/read_scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/scroll/read_scroll.py -------------------------------------------------------------------------------- /src/component/scroll/smooth_scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/scroll/smooth_scroll.py -------------------------------------------------------------------------------- /src/component/scroll/smooth_scroll_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/scroll/smooth_scroll_bar.py -------------------------------------------------------------------------------- /src/component/scroll_area/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/scroll_area/smooth_scroll_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/scroll_area/smooth_scroll_area.py -------------------------------------------------------------------------------- /src/component/system_tray_icon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/system_tray_icon/my_system_tray_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/system_tray_icon/my_system_tray_icon.py -------------------------------------------------------------------------------- /src/component/tab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/tab/base_table_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/tab/base_table_widget.py -------------------------------------------------------------------------------- /src/component/widget/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/widget/animation_stack_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/animation_stack_widget.py -------------------------------------------------------------------------------- /src/component/widget/com_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/com_widget.py -------------------------------------------------------------------------------- /src/component/widget/comic_item_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/comic_item_widget.py -------------------------------------------------------------------------------- /src/component/widget/comment_item_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/comment_item_widget.py -------------------------------------------------------------------------------- /src/component/widget/comment_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/comment_widget.py -------------------------------------------------------------------------------- /src/component/widget/main_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/main_widget.py -------------------------------------------------------------------------------- /src/component/widget/nas_item_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/nas_item_widget.py -------------------------------------------------------------------------------- /src/component/widget/navigation_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/navigation_widget.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/__init__.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/_rc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/_rc/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/_rc/resource.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/_rc/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/_rc/resource.qrc -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/_rc/title_bar/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/_rc/title_bar/close.svg -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/demo.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/linux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/linux/__init__.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/linux/window_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/linux/window_effect.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/mac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/mac/__init__.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/mac/window_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/mac/window_effect.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/titlebar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/titlebar/__init__.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/titlebar/title_bar_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/titlebar/title_bar_buttons.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/utils/__init__.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/utils/linux_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/utils/linux_utils.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/utils/mac_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/utils/mac_utils.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/utils/win32_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/utils/win32_utils.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/windows/__init__.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/windows/c_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/windows/c_structures.py -------------------------------------------------------------------------------- /src/component/widget/qframelesswindow/windows/window_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/qframelesswindow/windows/window_effect.py -------------------------------------------------------------------------------- /src/component/widget/setting_item_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/setting_item_widget.py -------------------------------------------------------------------------------- /src/component/widget/title_bar_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/title_bar_widget.py -------------------------------------------------------------------------------- /src/component/widget/windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/component/widget/windows/c_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/windows/c_structures.py -------------------------------------------------------------------------------- /src/component/widget/windows/frame_less_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/windows/frame_less_widget.py -------------------------------------------------------------------------------- /src/component/widget/windows/window_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/component/widget/windows/window_effect.py -------------------------------------------------------------------------------- /src/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/config/config.py -------------------------------------------------------------------------------- /src/config/global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/config/global_config.py -------------------------------------------------------------------------------- /src/config/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/config/setting.py -------------------------------------------------------------------------------- /src/db/book.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/db/book.db -------------------------------------------------------------------------------- /src/images_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/images_rc.py -------------------------------------------------------------------------------- /src/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interface/ui_batch_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_batch_sr.py -------------------------------------------------------------------------------- /src/interface/ui_book_eps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_book_eps.py -------------------------------------------------------------------------------- /src/interface/ui_book_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_book_info.py -------------------------------------------------------------------------------- /src/interface/ui_book_right.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_book_right.py -------------------------------------------------------------------------------- /src/interface/ui_book_rightui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_book_rightui.py -------------------------------------------------------------------------------- /src/interface/ui_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_category.py -------------------------------------------------------------------------------- /src/interface/ui_change_password_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_change_password_widget.py -------------------------------------------------------------------------------- /src/interface/ui_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_chat.py -------------------------------------------------------------------------------- /src/interface/ui_chat_new_room_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_chat_new_room_msg.py -------------------------------------------------------------------------------- /src/interface/ui_chat_room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_chat_room.py -------------------------------------------------------------------------------- /src/interface/ui_chat_room_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_chat_room_msg.py -------------------------------------------------------------------------------- /src/interface/ui_comic_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_comic_item.py -------------------------------------------------------------------------------- /src/interface/ui_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_comment.py -------------------------------------------------------------------------------- /src/interface/ui_comment_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_comment_item.py -------------------------------------------------------------------------------- /src/interface/ui_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_convert.py -------------------------------------------------------------------------------- /src/interface/ui_convert_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_convert_item.py -------------------------------------------------------------------------------- /src/interface/ui_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_download.py -------------------------------------------------------------------------------- /src/interface/ui_download_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_download_all.py -------------------------------------------------------------------------------- /src/interface/ui_download_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_download_dir.py -------------------------------------------------------------------------------- /src/interface/ui_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_exit.py -------------------------------------------------------------------------------- /src/interface/ui_favorite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_favorite.py -------------------------------------------------------------------------------- /src/interface/ui_forbid_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_forbid_words.py -------------------------------------------------------------------------------- /src/interface/ui_fried.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_fried.py -------------------------------------------------------------------------------- /src/interface/ui_fried_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_fried_msg.py -------------------------------------------------------------------------------- /src/interface/ui_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_game.py -------------------------------------------------------------------------------- /src/interface/ui_game_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_game_info.py -------------------------------------------------------------------------------- /src/interface/ui_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_help.py -------------------------------------------------------------------------------- /src/interface/ui_help_log_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_help_log_widget.py -------------------------------------------------------------------------------- /src/interface/ui_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_history.py -------------------------------------------------------------------------------- /src/interface/ui_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_index.py -------------------------------------------------------------------------------- /src/interface/ui_line_edit_help_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_line_edit_help_widget.py -------------------------------------------------------------------------------- /src/interface/ui_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_local.py -------------------------------------------------------------------------------- /src/interface/ui_local_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_local_all.py -------------------------------------------------------------------------------- /src/interface/ui_local_eps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_local_eps.py -------------------------------------------------------------------------------- /src/interface/ui_local_favorite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_local_favorite.py -------------------------------------------------------------------------------- /src/interface/ui_local_fold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_local_fold.py -------------------------------------------------------------------------------- /src/interface/ui_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_login.py -------------------------------------------------------------------------------- /src/interface/ui_login_proxy_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_login_proxy_widget.py -------------------------------------------------------------------------------- /src/interface/ui_login_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_login_widget.py -------------------------------------------------------------------------------- /src/interface/ui_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_main.py -------------------------------------------------------------------------------- /src/interface/ui_main_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_main_windows.py -------------------------------------------------------------------------------- /src/interface/ui_nas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_nas.py -------------------------------------------------------------------------------- /src/interface/ui_nas_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_nas_add.py -------------------------------------------------------------------------------- /src/interface/ui_nas_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_nas_item.py -------------------------------------------------------------------------------- /src/interface/ui_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_navigation.py -------------------------------------------------------------------------------- /src/interface/ui_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_rank.py -------------------------------------------------------------------------------- /src/interface/ui_read_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_read_tool.py -------------------------------------------------------------------------------- /src/interface/ui_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_register.py -------------------------------------------------------------------------------- /src/interface/ui_register_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_register_widget.py -------------------------------------------------------------------------------- /src/interface/ui_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_search.py -------------------------------------------------------------------------------- /src/interface/ui_setting_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_setting_new.py -------------------------------------------------------------------------------- /src/interface/ui_sr_select_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_sr_select_widget.py -------------------------------------------------------------------------------- /src/interface/ui_sub_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_sub_comment.py -------------------------------------------------------------------------------- /src/interface/ui_title_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_title_bar.py -------------------------------------------------------------------------------- /src/interface/ui_waifu2x_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/interface/ui_waifu2x_tool.py -------------------------------------------------------------------------------- /src/qt_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/qt_error.py -------------------------------------------------------------------------------- /src/qt_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/qt_owner.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/requirements_macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/requirements_macos.txt -------------------------------------------------------------------------------- /src/requirements_nosr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/requirements_nosr.txt -------------------------------------------------------------------------------- /src/requirements_win7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/requirements_win7.txt -------------------------------------------------------------------------------- /src/server/__init__.py: -------------------------------------------------------------------------------- 1 | from .user_handler import * -------------------------------------------------------------------------------- /src/server/req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/server/req.py -------------------------------------------------------------------------------- /src/server/res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/server/res.py -------------------------------------------------------------------------------- /src/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/server/server.py -------------------------------------------------------------------------------- /src/server/sql_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/server/sql_server.py -------------------------------------------------------------------------------- /src/server/user_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/server/user_handler.py -------------------------------------------------------------------------------- /src/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/start.py -------------------------------------------------------------------------------- /src/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/task/qt_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/qt_task.py -------------------------------------------------------------------------------- /src/task/task_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_convert.py -------------------------------------------------------------------------------- /src/task/task_convert_epub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_convert_epub.py -------------------------------------------------------------------------------- /src/task/task_convert_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_convert_zip.py -------------------------------------------------------------------------------- /src/task/task_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_download.py -------------------------------------------------------------------------------- /src/task/task_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_http.py -------------------------------------------------------------------------------- /src/task/task_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_local.py -------------------------------------------------------------------------------- /src/task/task_qimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_qimage.py -------------------------------------------------------------------------------- /src/task/task_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_sql.py -------------------------------------------------------------------------------- /src/task/task_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_upload.py -------------------------------------------------------------------------------- /src/task/task_waifu2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/task_waifu2x.py -------------------------------------------------------------------------------- /src/task/upload_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/upload_local.py -------------------------------------------------------------------------------- /src/task/upload_smb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/upload_smb.py -------------------------------------------------------------------------------- /src/task/upload_webdav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/task/upload_webdav.py -------------------------------------------------------------------------------- /src/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/book.py -------------------------------------------------------------------------------- /src/tools/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/category.py -------------------------------------------------------------------------------- /src/tools/langconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/langconv.py -------------------------------------------------------------------------------- /src/tools/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/log.py -------------------------------------------------------------------------------- /src/tools/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/singleton.py -------------------------------------------------------------------------------- /src/tools/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/status.py -------------------------------------------------------------------------------- /src/tools/str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/str.py -------------------------------------------------------------------------------- /src/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/tool.py -------------------------------------------------------------------------------- /src/tools/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/user.py -------------------------------------------------------------------------------- /src/tools/zh_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/tools/zh_wiki.py -------------------------------------------------------------------------------- /src/view/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/category/category_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/category/category_view.py -------------------------------------------------------------------------------- /src/view/category/rank_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/category/rank_view.py -------------------------------------------------------------------------------- /src/view/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/chat/chat_msg_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat/chat_msg_widget.py -------------------------------------------------------------------------------- /src/view/chat/chat_room_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat/chat_room_widget.py -------------------------------------------------------------------------------- /src/view/chat/chat_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat/chat_view.py -------------------------------------------------------------------------------- /src/view/chat/chat_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat/chat_websocket.py -------------------------------------------------------------------------------- /src/view/chat_new/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/chat_new/chat_new_msg_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat_new/chat_new_msg_widget.py -------------------------------------------------------------------------------- /src/view/chat_new/chat_new_room_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat_new/chat_new_room_widget.py -------------------------------------------------------------------------------- /src/view/chat_new/chat_new_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat_new/chat_new_view.py -------------------------------------------------------------------------------- /src/view/chat_new/chat_new_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/chat_new/chat_new_websocket.py -------------------------------------------------------------------------------- /src/view/comment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/comment/comment_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/comment/comment_view.py -------------------------------------------------------------------------------- /src/view/comment/fried_comment_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/comment/fried_comment_view.py -------------------------------------------------------------------------------- /src/view/comment/game_comment_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/comment/game_comment_view.py -------------------------------------------------------------------------------- /src/view/comment/my_comment_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/comment/my_comment_view.py -------------------------------------------------------------------------------- /src/view/comment/sub_comment_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/comment/sub_comment_view.py -------------------------------------------------------------------------------- /src/view/convert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/convert/convert_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/convert/convert_db.py -------------------------------------------------------------------------------- /src/view/convert/convert_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/convert/convert_item.py -------------------------------------------------------------------------------- /src/view/convert/convert_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/convert/convert_status.py -------------------------------------------------------------------------------- /src/view/convert/convert_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/convert/convert_view.py -------------------------------------------------------------------------------- /src/view/download/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/download/download_all_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/download/download_all_item.py -------------------------------------------------------------------------------- /src/view/download/download_all_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/download/download_all_view.py -------------------------------------------------------------------------------- /src/view/download/download_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/download/download_db.py -------------------------------------------------------------------------------- /src/view/download/download_dir_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/download/download_dir_view.py -------------------------------------------------------------------------------- /src/view/download/download_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/download/download_item.py -------------------------------------------------------------------------------- /src/view/download/download_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/download/download_status.py -------------------------------------------------------------------------------- /src/view/download/download_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/download/download_view.py -------------------------------------------------------------------------------- /src/view/fried/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/fried/fried_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/fried/fried_view.py -------------------------------------------------------------------------------- /src/view/fried/qt_fried_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/fried/qt_fried_msg.py -------------------------------------------------------------------------------- /src/view/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/game/game_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/game/game_view.py -------------------------------------------------------------------------------- /src/view/help/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/help/help_log_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/help/help_log_widget.py -------------------------------------------------------------------------------- /src/view/help/help_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/help/help_view.py -------------------------------------------------------------------------------- /src/view/index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/index/index_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/index/index_view.py -------------------------------------------------------------------------------- /src/view/info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/info/book_eps_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/info/book_eps_view.py -------------------------------------------------------------------------------- /src/view/info/book_info_right.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/info/book_info_right.py -------------------------------------------------------------------------------- /src/view/info/book_info_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/info/book_info_view.py -------------------------------------------------------------------------------- /src/view/info/game_info_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/info/game_info_view.py -------------------------------------------------------------------------------- /src/view/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/main/main_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/main/main_view.py -------------------------------------------------------------------------------- /src/view/nas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/nas/nas_add_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/nas/nas_add_view.py -------------------------------------------------------------------------------- /src/view/nas/nas_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/nas/nas_db.py -------------------------------------------------------------------------------- /src/view/nas/nas_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/nas/nas_item.py -------------------------------------------------------------------------------- /src/view/nas/nas_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/nas/nas_status.py -------------------------------------------------------------------------------- /src/view/nas/nas_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/nas/nas_view.py -------------------------------------------------------------------------------- /src/view/read/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/read/read_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_enum.py -------------------------------------------------------------------------------- /src/view/read/read_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_frame.py -------------------------------------------------------------------------------- /src/view/read/read_graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_graphics.py -------------------------------------------------------------------------------- /src/view/read/read_opengl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_opengl.py -------------------------------------------------------------------------------- /src/view/read/read_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_pool.py -------------------------------------------------------------------------------- /src/view/read/read_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_proxy.py -------------------------------------------------------------------------------- /src/view/read/read_qgraphics_proxy_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_qgraphics_proxy_widget.py -------------------------------------------------------------------------------- /src/view/read/read_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_tool.py -------------------------------------------------------------------------------- /src/view/read/read_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/read/read_view.py -------------------------------------------------------------------------------- /src/view/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/search/search_bar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/search/search_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/search/search_view.py -------------------------------------------------------------------------------- /src/view/setting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/setting/setting_sr_select_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/setting/setting_sr_select_view.py -------------------------------------------------------------------------------- /src/view/setting/setting_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/setting/setting_view.py -------------------------------------------------------------------------------- /src/view/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/tool/batch_sr_tool_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/batch_sr_tool_db.py -------------------------------------------------------------------------------- /src/view/tool/batch_sr_tool_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/batch_sr_tool_view.py -------------------------------------------------------------------------------- /src/view/tool/forbid_words_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/forbid_words_view.py -------------------------------------------------------------------------------- /src/view/tool/local_eps_read_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/local_eps_read_view.py -------------------------------------------------------------------------------- /src/view/tool/local_fold_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/local_fold_view.py -------------------------------------------------------------------------------- /src/view/tool/local_read_all_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/local_read_all_view.py -------------------------------------------------------------------------------- /src/view/tool/local_read_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/local_read_db.py -------------------------------------------------------------------------------- /src/view/tool/local_read_eps_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/local_read_eps_view.py -------------------------------------------------------------------------------- /src/view/tool/local_read_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/local_read_view.py -------------------------------------------------------------------------------- /src/view/tool/waifu2x_tool_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/tool/waifu2x_tool_view.py -------------------------------------------------------------------------------- /src/view/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/view/user/change_password_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/user/change_password_widget.py -------------------------------------------------------------------------------- /src/view/user/favorite_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/user/favorite_view.py -------------------------------------------------------------------------------- /src/view/user/history_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/user/history_view.py -------------------------------------------------------------------------------- /src/view/user/login_proxy_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/user/login_proxy_widget.py -------------------------------------------------------------------------------- /src/view/user/login_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/user/login_view.py -------------------------------------------------------------------------------- /src/view/user/login_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/user/login_widget.py -------------------------------------------------------------------------------- /src/view/user/register_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/src/view/user/register_widget.py -------------------------------------------------------------------------------- /translate/str_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/translate/str_en.ts -------------------------------------------------------------------------------- /translate/str_hk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/translate/str_hk.ts -------------------------------------------------------------------------------- /translate/ui_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/translate/ui_en.ts -------------------------------------------------------------------------------- /translate/ui_hk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/translate/ui_hk.ts -------------------------------------------------------------------------------- /ui/component/ui_book_right.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_book_right.ui -------------------------------------------------------------------------------- /ui/component/ui_book_rightui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_book_rightui.ui -------------------------------------------------------------------------------- /ui/component/ui_change_password_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_change_password_widget.ui -------------------------------------------------------------------------------- /ui/component/ui_chat_new_room_msg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_chat_new_room_msg.ui -------------------------------------------------------------------------------- /ui/component/ui_chat_room.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_chat_room.ui -------------------------------------------------------------------------------- /ui/component/ui_chat_room_msg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_chat_room_msg.ui -------------------------------------------------------------------------------- /ui/component/ui_comic_item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_comic_item.ui -------------------------------------------------------------------------------- /ui/component/ui_comment_item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_comment_item.ui -------------------------------------------------------------------------------- /ui/component/ui_download_dir.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_download_dir.ui -------------------------------------------------------------------------------- /ui/component/ui_exit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_exit.ui -------------------------------------------------------------------------------- /ui/component/ui_forbid_words.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_forbid_words.ui -------------------------------------------------------------------------------- /ui/component/ui_fried_msg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_fried_msg.ui -------------------------------------------------------------------------------- /ui/component/ui_help_log_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_help_log_widget.ui -------------------------------------------------------------------------------- /ui/component/ui_line_edit_help_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_line_edit_help_widget.ui -------------------------------------------------------------------------------- /ui/component/ui_local_fold.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_local_fold.ui -------------------------------------------------------------------------------- /ui/component/ui_login_proxy_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_login_proxy_widget.ui -------------------------------------------------------------------------------- /ui/component/ui_login_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_login_widget.ui -------------------------------------------------------------------------------- /ui/component/ui_nas_item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_nas_item.ui -------------------------------------------------------------------------------- /ui/component/ui_navigation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_navigation.ui -------------------------------------------------------------------------------- /ui/component/ui_read_tool.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_read_tool.ui -------------------------------------------------------------------------------- /ui/component/ui_register_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_register_widget.ui -------------------------------------------------------------------------------- /ui/component/ui_sr_select_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_sr_select_widget.ui -------------------------------------------------------------------------------- /ui/component/ui_title_bar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/component/ui_title_bar.ui -------------------------------------------------------------------------------- /ui/ui_batch_sr.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_batch_sr.ui -------------------------------------------------------------------------------- /ui/ui_book_eps.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_book_eps.ui -------------------------------------------------------------------------------- /ui/ui_book_info.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_book_info.ui -------------------------------------------------------------------------------- /ui/ui_category.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_category.ui -------------------------------------------------------------------------------- /ui/ui_chat.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_chat.ui -------------------------------------------------------------------------------- /ui/ui_comment.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_comment.ui -------------------------------------------------------------------------------- /ui/ui_convert.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_convert.ui -------------------------------------------------------------------------------- /ui/ui_convert_item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_convert_item.ui -------------------------------------------------------------------------------- /ui/ui_download.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_download.ui -------------------------------------------------------------------------------- /ui/ui_download_all.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_download_all.ui -------------------------------------------------------------------------------- /ui/ui_favorite.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_favorite.ui -------------------------------------------------------------------------------- /ui/ui_fried.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_fried.ui -------------------------------------------------------------------------------- /ui/ui_game.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_game.ui -------------------------------------------------------------------------------- /ui/ui_game_info.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_game_info.ui -------------------------------------------------------------------------------- /ui/ui_help.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_help.ui -------------------------------------------------------------------------------- /ui/ui_history.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_history.ui -------------------------------------------------------------------------------- /ui/ui_index.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_index.ui -------------------------------------------------------------------------------- /ui/ui_local.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_local.ui -------------------------------------------------------------------------------- /ui/ui_local_all.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_local_all.ui -------------------------------------------------------------------------------- /ui/ui_local_eps.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_local_eps.ui -------------------------------------------------------------------------------- /ui/ui_local_favorite.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_local_favorite.ui -------------------------------------------------------------------------------- /ui/ui_login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_login.ui -------------------------------------------------------------------------------- /ui/ui_main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_main.ui -------------------------------------------------------------------------------- /ui/ui_main_windows.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_main_windows.ui -------------------------------------------------------------------------------- /ui/ui_nas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_nas.ui -------------------------------------------------------------------------------- /ui/ui_nas_add.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_nas_add.ui -------------------------------------------------------------------------------- /ui/ui_rank.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_rank.ui -------------------------------------------------------------------------------- /ui/ui_search.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_search.ui -------------------------------------------------------------------------------- /ui/ui_setting_new.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_setting_new.ui -------------------------------------------------------------------------------- /ui/ui_sub_comment.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_sub_comment.ui -------------------------------------------------------------------------------- /ui/ui_waifu2x_tool.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonquer/picacg-qt/HEAD/ui/ui_waifu2x_tool.ui --------------------------------------------------------------------------------