Add 'common' module for functions used by more than one script.

This commit is contained in:
Philippe Tourigny 2022-07-16 12:18:06 +09:00
parent c4108bdf9a
commit 2c8d86d04c
1 changed files with 70 additions and 0 deletions

70
omegat_tools/common.py Normal file
View File

@ -0,0 +1,70 @@
# -*- coding: utf-8 -*-
'''Module that defines file-related dialogs used across scripts.'''
import tkinter as tk
from tkinter import filedialog
from pathlib import Path
from configparser import ConfigParser
# Constants
CONFIGFILE = Path('./config/omegat-tools.conf')
USER_HOME = Path.home()
DEFAULT_DOCHOME = Path(USER_HOME/'Documents')
def read_config(configfile):
'''Load the configuration file'''
parser = ConfigParser()
parser.read(configfile, encoding='utf-8')
return parser
def set_basepath(candidates):
'''Define the default starting path for documents.'''
# Give priority to path set in config file, if valid.
# If not, use the user's 'Documents' folder if it exists,
# and the user folder if not, as a default.
basepath = None
while basepath is None:
if candidates[0].exists():
basepath = candidates[0]
else:
candidates.pop(0)
return basepath
def set_root_window():
'''Define a root window file dialog.'''
rootWin = tk.Tk()
rootWin.attributes('-topmost', True)
rootWin.withdraw()
def select_folder(basepath, title):
'''Ask user to choose a folder.'''
set_root_window()
folder = Path(filedialog.askdirectory(initialdir=basepath,
title=title))
return folder
def get_save_file_name(basepath, filetypes, title):
'''Ask for the name of the file to save.'''
set_root_window()
save_file_name = Path(filedialog.asksaveasfilename(initialdir=basepath,
filetypes = filetypes, title=title))
return save_file_name
config = read_config(CONFIGFILE)