├── pack ├── debian │ ├── compat │ ├── source │ │ └── format │ ├── libjpconj.install │ ├── jpconj.install │ └── rules └── windows │ └── JapKatsuyou │ └── license │ ├── ja.txt │ ├── ar.txt │ ├── en.txt │ └── fr.txt ├── CONTRIBUTING.md ├── jpconj ├── Media │ ├── i18n │ │ ├── jpconj_ar.ini │ │ ├── jpconj_ja.ini │ │ └── jpconj_fr.ini │ ├── jpconj.rc │ ├── styles │ │ ├── Goldy.ini │ │ ├── Rainbow.ini │ │ ├── ClearGR.ini │ │ ├── FColors.ini │ │ ├── RowCol.ini │ │ ├── DzStyle.ini │ │ ├── Goldy.jpg │ │ ├── RowCol.jpg │ │ ├── ClearGR.jpg │ │ ├── DzStyle.jpg │ │ ├── FColors.jpg │ │ ├── Rainbow.jpg │ │ ├── Goldy.css │ │ └── FColors.css │ ├── icon.ico │ ├── help │ │ ├── ar │ │ │ ├── gui_exp.jpg │ │ │ ├── gui_info.jpg │ │ │ ├── img │ │ │ │ ├── help.png │ │ │ │ ├── hide.png │ │ │ │ ├── icon.png │ │ │ │ ├── pref.png │ │ │ │ ├── show.png │ │ │ │ ├── zoom.png │ │ │ │ ├── about.png │ │ │ │ ├── close.png │ │ │ │ ├── export.png │ │ │ │ ├── print.png │ │ │ │ ├── zoom+.png │ │ │ │ ├── zoom-.png │ │ │ │ └── zoom1.png │ │ │ ├── main_gui.jpg │ │ │ ├── use_tray.jpg │ │ │ ├── gui_basic.jpg │ │ │ ├── main_about.jpg │ │ │ ├── use_about.jpg │ │ │ ├── use_prefUI.jpg │ │ │ ├── gui_complex.jpg │ │ │ ├── gui_menuEdit.jpg │ │ │ ├── gui_menuFile.jpg │ │ │ ├── gui_menuHelp.jpg │ │ │ ├── gui_menuView.jpg │ │ │ ├── gui_standard.jpg │ │ │ ├── gui_toolbars.jpg │ │ │ └── use_prefExport.jpg │ │ ├── en │ │ │ ├── gui_exp.jpg │ │ │ ├── gui_info.jpg │ │ │ ├── img │ │ │ │ ├── help.png │ │ │ │ ├── hide.png │ │ │ │ ├── icon.png │ │ │ │ ├── pref.png │ │ │ │ ├── show.png │ │ │ │ ├── zoom.png │ │ │ │ ├── about.png │ │ │ │ ├── close.png │ │ │ │ ├── export.png │ │ │ │ ├── print.png │ │ │ │ ├── zoom+.png │ │ │ │ ├── zoom-.png │ │ │ │ └── zoom1.png │ │ │ ├── main_gui.jpg │ │ │ ├── use_tray.jpg │ │ │ ├── gui_basic.jpg │ │ │ ├── main_about.jpg │ │ │ ├── use_about.jpg │ │ │ ├── use_prefUI.jpg │ │ │ ├── gui_complex.jpg │ │ │ ├── gui_menuEdit.jpg │ │ │ ├── gui_menuFile.jpg │ │ │ ├── gui_menuHelp.jpg │ │ │ ├── gui_menuView.jpg │ │ │ ├── gui_standard.jpg │ │ │ ├── gui_toolbars.jpg │ │ │ └── use_prefExport.jpg │ │ ├── fr │ │ │ ├── gui_exp.jpg │ │ │ ├── gui_info.jpg │ │ │ ├── img │ │ │ │ ├── help.png │ │ │ │ ├── hide.png │ │ │ │ ├── icon.png │ │ │ │ ├── pref.png │ │ │ │ ├── show.png │ │ │ │ ├── zoom.png │ │ │ │ ├── about.png │ │ │ │ ├── close.png │ │ │ │ ├── export.png │ │ │ │ ├── print.png │ │ │ │ ├── zoom+.png │ │ │ │ ├── zoom-.png │ │ │ │ └── zoom1.png │ │ │ ├── main_gui.jpg │ │ │ ├── use_tray.jpg │ │ │ ├── gui_basic.jpg │ │ │ ├── main_about.jpg │ │ │ ├── use_about.jpg │ │ │ ├── use_prefUI.jpg │ │ │ ├── gui_complex.jpg │ │ │ ├── gui_menuEdit.jpg │ │ │ ├── gui_menuFile.jpg │ │ │ ├── gui_menuHelp.jpg │ │ │ ├── gui_menuView.jpg │ │ │ ├── gui_standard.jpg │ │ │ ├── gui_toolbars.jpg │ │ │ └── use_prefExport.jpg │ │ ├── ja │ │ │ ├── gui_exp.jpg │ │ │ ├── gui_info.jpg │ │ │ ├── img │ │ │ │ ├── help.png │ │ │ │ ├── hide.png │ │ │ │ ├── icon.png │ │ │ │ ├── pref.png │ │ │ │ ├── show.png │ │ │ │ ├── zoom.png │ │ │ │ ├── about.png │ │ │ │ ├── close.png │ │ │ │ ├── export.png │ │ │ │ ├── print.png │ │ │ │ ├── zoom+.png │ │ │ │ ├── zoom-.png │ │ │ │ └── zoom1.png │ │ │ ├── main_gui.jpg │ │ │ ├── use_tray.jpg │ │ │ ├── gui_basic.jpg │ │ │ ├── main_about.jpg │ │ │ ├── use_about.jpg │ │ │ ├── use_prefUI.jpg │ │ │ ├── gui_complex.jpg │ │ │ ├── gui_menuEdit.jpg │ │ │ ├── gui_menuFile.jpg │ │ │ ├── gui_menuHelp.jpg │ │ │ ├── gui_menuView.jpg │ │ │ ├── gui_standard.jpg │ │ │ ├── gui_toolbars.jpg │ │ │ └── use_prefExport.jpg │ │ ├── ar.qhcp │ │ ├── en.qhcp │ │ ├── fr.qhcp │ │ └── ja.qhcp │ ├── icons.qrc │ ├── about │ │ ├── about_ja │ │ ├── about_ar │ │ ├── about_en │ │ ├── about_fr │ │ ├── authors_ja │ │ ├── authors_en │ │ ├── authors_ar │ │ ├── authors_fr │ │ ├── license_ja │ │ └── license_ar │ ├── output.qrc │ ├── img │ │ └── README.md │ ├── output │ │ └── verbInfo │ ├── about.qrc │ ├── DB │ │ └── README.md │ └── jpconj.desktop └── UiHelper │ └── icona.h ├── logo.png ├── docs ├── jpconj │ ├── bc_s.png │ ├── bdwn.png │ ├── doc.png │ ├── open.png │ ├── closed.png │ ├── doxygen.png │ ├── icon64.png │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ ├── arrowdown.png │ ├── splitbar.png │ ├── sync_off.png │ ├── arrowright.png │ ├── folderclosed.png │ ├── folderopen.png │ └── search │ │ ├── all_14.js │ │ ├── close.png │ │ ├── mag_sel.png │ │ ├── namespaces_1.js │ │ ├── classes_0.js │ │ ├── classes_5.js │ │ ├── namespaces_0.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── classes_7.js │ │ ├── classes_b.js │ │ ├── classes_1.js │ │ ├── classes_3.js │ │ ├── classes_8.js │ │ ├── variables_6.js │ │ ├── variables_7.js │ │ ├── defines_0.js │ │ ├── functions_11.js │ │ ├── typedefs_0.js │ │ ├── variables_0.js │ │ ├── all_15.js │ │ ├── all_a.js │ │ ├── files_8.js │ │ ├── variables_3.js │ │ ├── variables_5.js │ │ ├── functions_12.js │ │ ├── variables_4.js │ │ ├── variables_8.js │ │ ├── variables_9.js │ │ ├── classes_a.js │ │ ├── files_0.js │ │ ├── files_5.js │ │ ├── files_b.js │ │ ├── files_c.js │ │ ├── files_7.js │ │ ├── defines_1.js │ │ ├── files_1.js │ │ ├── files_3.js │ │ ├── files_4.js │ │ ├── files_9.js │ │ ├── files_a.js │ │ ├── classes_2.js │ │ ├── all_e.js │ │ ├── functions_d.js │ │ ├── variables_1.js │ │ ├── functions_c.js │ │ ├── functions_e.js │ │ ├── functions_a.js │ │ ├── variables_2.js │ │ ├── files_2.js │ │ ├── classes_4.js │ │ ├── classes_6.js │ │ ├── functions_b.js │ │ ├── all_1.js │ │ ├── functions_1.js │ │ ├── all_13.js │ │ ├── all_16.js │ │ ├── all_d.js │ │ ├── functions_13.js │ │ ├── functions_3.js │ │ ├── functions_9.js │ │ ├── nomatches.html │ │ ├── all_c.js │ │ ├── all_f.js │ │ ├── functions_5.js │ │ ├── all_b.js │ │ ├── functions_f.js │ │ ├── files_6.js │ │ ├── all_3.js │ │ ├── searchdata.js │ │ ├── all_11.js │ │ ├── all_5.js │ │ ├── functions_4.js │ │ ├── classes_9.js │ │ ├── all_17.js │ │ ├── functions_14.js │ │ ├── all_10.js │ │ ├── all_0.html │ │ ├── all_1.html │ │ ├── all_2.html │ │ ├── all_3.html │ │ ├── all_4.html │ │ ├── all_5.html │ │ ├── all_6.html │ │ ├── all_7.html │ │ ├── all_8.html │ │ └── all_9.html ├── libjpconj │ ├── bc_s.png │ ├── bdwn.png │ ├── doc.png │ ├── open.png │ ├── closed.png │ ├── icon64.png │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ ├── arrowdown.png │ ├── doxygen.png │ ├── splitbar.png │ ├── sync_off.png │ ├── sync_on.png │ ├── arrowright.png │ ├── folderopen.png │ ├── folderclosed.png │ └── search │ │ ├── close.png │ │ ├── mag_sel.png │ │ ├── classes_1.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── files_3.js │ │ ├── classes_0.js │ │ ├── classes_2.js │ │ ├── all_1.js │ │ ├── all_5.js │ │ ├── all_a.js │ │ ├── all_d.js │ │ ├── enums_0.js │ │ ├── enums_2.js │ │ ├── enums_1.js │ │ ├── functions_0.js │ │ ├── functions_4.js │ │ ├── functions_7.js │ │ ├── functions_8.js │ │ ├── functions_9.js │ │ ├── variables_0.js │ │ ├── variables_2.js │ │ ├── defines_0.js │ │ ├── classes_3.js │ │ ├── functions_6.js │ │ ├── files_4.js │ │ ├── defines_1.js │ │ ├── files_0.js │ │ ├── all_c.js │ │ ├── files_2.js │ │ ├── functions_1.js │ │ ├── functions_3.js │ │ ├── functions_5.js │ │ ├── all_3.js │ │ ├── enums_3.js │ │ ├── files_1.js │ │ ├── functions_2.js │ │ ├── variables_1.js │ │ ├── all_7.js │ │ ├── all_2.js │ │ ├── all_8.js │ │ ├── all_4.js │ │ ├── all_6.js │ │ ├── all_e.js │ │ ├── all_b.js │ │ ├── nomatches.html │ │ ├── all_9.js │ │ └── searchdata.js ├── latex.jpconj │ ├── namespace_ui.tex │ ├── edict2_8cpp.tex │ ├── jtrans_8cpp.tex │ ├── tatoeba_8cpp.tex │ ├── icona_8cpp.tex │ ├── style_8cpp.tex │ ├── export_8cpp.tex │ ├── language_8cpp.tex │ ├── funcframe_8cpp.tex │ ├── jpconjtray_8cpp.tex │ ├── about_8cpp.tex │ ├── conjframe_8cpp.tex │ ├── jpconjhelp_8cpp.tex │ ├── jpconjmain_8cpp.tex │ ├── namespaces.tex │ ├── preference_8cpp.tex │ ├── class_q_frame.tex │ ├── class_q_web_page.tex │ ├── class_q_web_view.tex │ ├── dir_cb8729665185ea129da29a441c98ff02.tex │ ├── class_q_object.tex │ ├── class_q_dialog.tex │ ├── icona_8h.tex │ ├── class_q_network_reply.tex │ ├── class_q_main_window.tex │ ├── class_q_system_tray_icon.tex │ ├── dir_6cd8e1785aa148050fc69ce9c3d4496e.tex │ ├── edict2_8h.tex │ ├── funcframe_8h.tex │ ├── class_q_network_access_manager.tex │ ├── tatoeba_8h.tex │ ├── helpviewer_8cpp.tex │ ├── jtrans_8h.tex │ ├── qkicona_8h.tex │ ├── dir_c606822aacd7c547b5863775591995e0.tex │ ├── about_8h.tex │ ├── namespace_msg.tex │ ├── jpconjtray_8h.tex │ ├── style_8h.tex │ ├── dir_fef140197a1168b7bcd55ff6c5cbd94f.tex │ ├── export_8h.tex │ ├── preference_8h.tex │ ├── helpviewer_8h.tex │ ├── conjframe_8h.tex │ ├── jpconjhelp_8h.tex │ ├── dir_bf52adbaa2a843b5ec6519afae08e90d.tex │ └── dir_39b1cb06a8863f7ce54780a12819f128.tex ├── latex.libjpconj │ ├── verbstem_8cpp.tex │ ├── inflection_8cpp.tex │ ├── lemmatization_8cpp.tex │ ├── lemmatization_8h.tex │ ├── verbstem_8h.tex │ ├── inflection_8h.tex │ ├── jpconj_8h.tex │ ├── annotated.tex │ └── dir_b931e7fb47ab3e484c5e2e3155fcfa9b.tex ├── man.jpconj │ └── man3 │ │ ├── Ui.3 │ │ ├── QFrame.3 │ │ ├── QWebPage.3 │ │ ├── QWebView.3 │ │ ├── QObject.3 │ │ ├── QDialog.3 │ │ ├── QNetworkReply.3 │ │ ├── QSystemTrayIcon.3 │ │ ├── edict2.cpp.3 │ │ ├── icona.cpp.3 │ │ ├── jtrans.cpp.3 │ │ ├── style.cpp.3 │ │ ├── tatoeba.cpp.3 │ │ ├── QMainWindow.3 │ │ ├── export.cpp.3 │ │ ├── language.cpp.3 │ │ ├── _home_kariminf_Github_Projects_japkatsuyou_jpconj_3rdParty_.3 │ │ ├── funcframe.cpp.3 │ │ ├── jpconjtray.cpp.3 │ │ ├── QNetworkAccessManager.3 │ │ ├── about.cpp.3 │ │ ├── conjframe.cpp.3 │ │ ├── jpconjhelp.cpp.3 │ │ ├── jpconjmain.cpp.3 │ │ ├── preference.cpp.3 │ │ ├── _home_kariminf_Github_Projects_japkatsuyou_jpconj_3rdParty_QKIcona_.3 │ │ ├── icona.h.3 │ │ ├── edict2.h.3 │ │ ├── funcframe.h.3 │ │ ├── helpviewer.cpp.3 │ │ ├── _home_kariminf_Github_Projects_japkatsuyou_jpconj_.3 │ │ ├── tatoeba.h.3 │ │ ├── _home_kariminf_Github_Projects_japkatsuyou_jpconj_Func_.3 │ │ ├── jtrans.h.3 │ │ ├── Tatoeba_Exp.3 │ │ ├── qkicona_global.h.3 │ │ ├── qkicona.h.3 │ │ ├── about.h.3 │ │ ├── Edict2_JaVerb.3 │ │ ├── Msg.3 │ │ ├── msg.h.3 │ │ ├── jpconjtray.h.3 │ │ ├── export.h.3 │ │ ├── style.h.3 │ │ ├── preference.h.3 │ │ ├── QKIcona.3 │ │ ├── main.cpp.3 │ │ ├── conjframe.h.3 │ │ ├── _home_kariminf_Github_Projects_japkatsuyou_jpconj_Ui_.3 │ │ ├── jpconjhelp.h.3 │ │ ├── helpviewer.h.3 │ │ ├── JTrans.3 │ │ ├── Styleinfo.3 │ │ ├── _home_kariminf_Github_Projects_japkatsuyou_jpconj_UiHelper_.3 │ │ └── language.h.3 └── man.libjpconj │ └── man3 │ ├── verbstem.cpp.3 │ ├── inflection.cpp.3 │ ├── lemmatization.cpp.3 │ ├── lemmatization.h.3 │ ├── verbstem.h.3 │ ├── inflection.h.3 │ ├── Lemmatization.3 │ ├── jpconj_global.h.3 │ ├── jpconj.h.3 │ ├── jpconj.cpp.3 │ ├── VerbInfo.3 │ └── _home_kariminf_Github_Projects_japkatsuyou_libjpconj_.3 ├── japkatsuyou.pro ├── libjpconj ├── .directory ├── lemmatization.h └── lemmatization.cpp ├── .gitignore ├── INSTALL.rst ├── Authors.rst └── CHANGELOG.md /pack/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | -------------------------------------------------------------------------------- /jpconj/Media/i18n/jpconj_ar.ini: -------------------------------------------------------------------------------- 1 | name=العربية -------------------------------------------------------------------------------- /jpconj/Media/i18n/jpconj_ja.ini: -------------------------------------------------------------------------------- 1 | name=日本語 -------------------------------------------------------------------------------- /pack/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /jpconj/Media/i18n/jpconj_fr.ini: -------------------------------------------------------------------------------- 1 | name=Français -------------------------------------------------------------------------------- /pack/debian/libjpconj.install: -------------------------------------------------------------------------------- 1 | /usr/lib/* /usr/lib/ -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/logo.png -------------------------------------------------------------------------------- /jpconj/Media/jpconj.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "icon.ico" -------------------------------------------------------------------------------- /docs/jpconj/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/bc_s.png -------------------------------------------------------------------------------- /docs/jpconj/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/bdwn.png -------------------------------------------------------------------------------- /docs/jpconj/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/doc.png -------------------------------------------------------------------------------- /docs/jpconj/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/open.png -------------------------------------------------------------------------------- /japkatsuyou.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = libjpconj jpconj 3 | jpconj.depends = libjpconj -------------------------------------------------------------------------------- /jpconj/Media/styles/Goldy.ini: -------------------------------------------------------------------------------- 1 | name=Goldy 2 | author=Abdelkrime Aries 3 | date=2016-04-08 4 | desc= -------------------------------------------------------------------------------- /docs/jpconj/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/closed.png -------------------------------------------------------------------------------- /docs/jpconj/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/doxygen.png -------------------------------------------------------------------------------- /docs/jpconj/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/icon64.png -------------------------------------------------------------------------------- /docs/jpconj/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/nav_f.png -------------------------------------------------------------------------------- /docs/jpconj/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/nav_g.png -------------------------------------------------------------------------------- /docs/jpconj/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/nav_h.png -------------------------------------------------------------------------------- /docs/jpconj/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/sync_on.png -------------------------------------------------------------------------------- /docs/jpconj/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/tab_a.png -------------------------------------------------------------------------------- /docs/jpconj/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/tab_b.png -------------------------------------------------------------------------------- /docs/jpconj/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/tab_h.png -------------------------------------------------------------------------------- /docs/jpconj/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/tab_s.png -------------------------------------------------------------------------------- /docs/libjpconj/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/bc_s.png -------------------------------------------------------------------------------- /docs/libjpconj/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/bdwn.png -------------------------------------------------------------------------------- /docs/libjpconj/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/doc.png -------------------------------------------------------------------------------- /docs/libjpconj/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/open.png -------------------------------------------------------------------------------- /jpconj/Media/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/icon.ico -------------------------------------------------------------------------------- /libjpconj/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2013,8,7,14,52,18 4 | Version=3 5 | -------------------------------------------------------------------------------- /docs/jpconj/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/arrowdown.png -------------------------------------------------------------------------------- /docs/jpconj/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/splitbar.png -------------------------------------------------------------------------------- /docs/jpconj/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/sync_off.png -------------------------------------------------------------------------------- /docs/libjpconj/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/closed.png -------------------------------------------------------------------------------- /docs/libjpconj/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/icon64.png -------------------------------------------------------------------------------- /docs/libjpconj/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/nav_f.png -------------------------------------------------------------------------------- /docs/libjpconj/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/nav_g.png -------------------------------------------------------------------------------- /docs/libjpconj/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/nav_h.png -------------------------------------------------------------------------------- /docs/libjpconj/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/tab_a.png -------------------------------------------------------------------------------- /docs/libjpconj/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/tab_b.png -------------------------------------------------------------------------------- /docs/libjpconj/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/tab_h.png -------------------------------------------------------------------------------- /docs/libjpconj/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/tab_s.png -------------------------------------------------------------------------------- /jpconj/Media/styles/Rainbow.ini: -------------------------------------------------------------------------------- 1 | name=Rainbow colors 2 | author=Abdelkrime Aries 3 | date=2013-12-28 4 | desc= -------------------------------------------------------------------------------- /docs/jpconj/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/arrowright.png -------------------------------------------------------------------------------- /docs/jpconj/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/folderclosed.png -------------------------------------------------------------------------------- /docs/jpconj/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/folderopen.png -------------------------------------------------------------------------------- /docs/jpconj/search/all_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ui',['Ui',['../namespace_ui.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/search/close.png -------------------------------------------------------------------------------- /docs/libjpconj/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/arrowdown.png -------------------------------------------------------------------------------- /docs/libjpconj/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/doxygen.png -------------------------------------------------------------------------------- /docs/libjpconj/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/splitbar.png -------------------------------------------------------------------------------- /docs/libjpconj/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/sync_off.png -------------------------------------------------------------------------------- /docs/libjpconj/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/sync_on.png -------------------------------------------------------------------------------- /jpconj/Media/styles/ClearGR.ini: -------------------------------------------------------------------------------- 1 | name=Clear green red 2 | author=Abdelkrime Aries 3 | date=2013/10/01 4 | desc= -------------------------------------------------------------------------------- /jpconj/Media/styles/FColors.ini: -------------------------------------------------------------------------------- 1 | name=Facebook colors 2 | author=Abdelkrime Aries 3 | date=2013-12-28 4 | desc= -------------------------------------------------------------------------------- /jpconj/Media/styles/RowCol.ini: -------------------------------------------------------------------------------- 1 | name=Rows and Columns 2 | author=Abdelkrime Aries 3 | date=2013-12-28 4 | desc= -------------------------------------------------------------------------------- /docs/jpconj/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/search/mag_sel.png -------------------------------------------------------------------------------- /docs/jpconj/search/namespaces_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ui',['Ui',['../namespace_ui.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/arrowright.png -------------------------------------------------------------------------------- /docs/libjpconj/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/folderopen.png -------------------------------------------------------------------------------- /jpconj/Media/styles/DzStyle.ini: -------------------------------------------------------------------------------- 1 | name=DzCoding default style 2 | author=Abdelkrime Aries 3 | date=2013-12-28 4 | desc= -------------------------------------------------------------------------------- /jpconj/Media/styles/Goldy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/styles/Goldy.jpg -------------------------------------------------------------------------------- /jpconj/Media/styles/RowCol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/styles/RowCol.jpg -------------------------------------------------------------------------------- /docs/jpconj/search/classes_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['about',['About',['../class_about.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['icona',['Icona',['../class_icona.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/namespaces_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['msg',['Msg',['../namespace_msg.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/search/search_l.png -------------------------------------------------------------------------------- /docs/jpconj/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/search/search_m.png -------------------------------------------------------------------------------- /docs/jpconj/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/jpconj/search/search_r.png -------------------------------------------------------------------------------- /docs/libjpconj/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/folderclosed.png -------------------------------------------------------------------------------- /docs/libjpconj/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/search/close.png -------------------------------------------------------------------------------- /docs/libjpconj/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/search/mag_sel.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_exp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_info.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/help.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/hide.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/icon.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/pref.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/show.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/zoom.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/main_gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/main_gui.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/use_tray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/use_tray.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_exp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_info.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/help.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/hide.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/icon.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/pref.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/show.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/zoom.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/main_gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/main_gui.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/use_tray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/use_tray.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_exp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_info.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/help.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/hide.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/icon.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/pref.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/show.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/zoom.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/main_gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/main_gui.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/use_tray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/use_tray.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_exp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_info.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/help.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/hide.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/icon.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/pref.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/show.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/zoom.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/main_gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/main_gui.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/use_tray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/use_tray.jpg -------------------------------------------------------------------------------- /jpconj/Media/styles/ClearGR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/styles/ClearGR.jpg -------------------------------------------------------------------------------- /jpconj/Media/styles/DzStyle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/styles/DzStyle.jpg -------------------------------------------------------------------------------- /jpconj/Media/styles/FColors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/styles/FColors.jpg -------------------------------------------------------------------------------- /jpconj/Media/styles/Rainbow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/styles/Rainbow.jpg -------------------------------------------------------------------------------- /docs/jpconj/search/classes_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['language',['Language',['../class_language.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tatoeba',['Tatoeba',['../class_tatoeba.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/classes_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jpconj',['JpConj',['../class_jp_conj.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/search/search_l.png -------------------------------------------------------------------------------- /docs/libjpconj/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/search/search_m.png -------------------------------------------------------------------------------- /docs/libjpconj/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/docs/libjpconj/search/search_r.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_basic.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/about.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/close.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/export.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/print.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/zoom+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/zoom+.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/zoom-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/zoom-.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/img/zoom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/img/zoom1.png -------------------------------------------------------------------------------- /jpconj/Media/help/ar/main_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/main_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/use_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/use_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/use_prefUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/use_prefUI.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_basic.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/about.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/close.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/export.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/print.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/zoom+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/zoom+.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/zoom-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/zoom-.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/img/zoom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/img/zoom1.png -------------------------------------------------------------------------------- /jpconj/Media/help/en/main_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/main_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/use_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/use_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/use_prefUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/use_prefUI.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_basic.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/about.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/close.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/export.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/print.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/zoom+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/zoom+.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/zoom-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/zoom-.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/img/zoom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/img/zoom1.png -------------------------------------------------------------------------------- /jpconj/Media/help/fr/main_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/main_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/use_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/use_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/use_prefUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/use_prefUI.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_basic.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/about.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/close.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/export.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/print.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/zoom+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/zoom+.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/zoom-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/zoom-.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/img/zoom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/img/zoom1.png -------------------------------------------------------------------------------- /jpconj/Media/help/ja/main_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/main_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/use_about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/use_about.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/use_prefUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/use_prefUI.jpg -------------------------------------------------------------------------------- /docs/jpconj/search/classes_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['conjframe',['ConjFrame',['../class_conj_frame.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['funcframe',['FuncFrame',['../class_func_frame.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/files_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['typedefs_2eh',['typeDefs.h',['../type_defs_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_complex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_complex.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_menuEdit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_menuEdit.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_menuFile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_menuFile.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_menuHelp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_menuHelp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_menuView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_menuView.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_standard.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ar/gui_toolbars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/gui_toolbars.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_complex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_complex.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_menuEdit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_menuEdit.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_menuFile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_menuFile.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_menuHelp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_menuHelp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_menuView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_menuView.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_standard.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/gui_toolbars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/gui_toolbars.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_complex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_complex.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_menuEdit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_menuEdit.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_menuFile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_menuFile.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_menuHelp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_menuHelp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_menuView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_menuView.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_standard.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/gui_toolbars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/gui_toolbars.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_complex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_complex.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_menuEdit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_menuEdit.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_menuFile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_menuFile.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_menuHelp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_menuHelp.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_menuView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_menuView.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_standard.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/gui_toolbars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/gui_toolbars.jpg -------------------------------------------------------------------------------- /jpconj/Media/icons.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | img/icon.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preference',['Preference',['../class_preference.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/classes_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['inflection',['Inflection',['../class_inflection.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /jpconj/Media/about/about_ja: -------------------------------------------------------------------------------- 1 | 2 |

3 | 日本語の動詞活用するアプリケーション。 4 |

-------------------------------------------------------------------------------- /jpconj/Media/help/ar/use_prefExport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ar/use_prefExport.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/en/use_prefExport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/en/use_prefExport.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/fr/use_prefExport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/fr/use_prefExport.jpg -------------------------------------------------------------------------------- /jpconj/Media/help/ja/use_prefExport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anqafalak/japkatsuyou/HEAD/jpconj/Media/help/ja/use_prefExport.jpg -------------------------------------------------------------------------------- /docs/latex.jpconj/namespace_ui.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_ui}{}\section{Ui Namespace Reference} 2 | \label{namespace_ui}\index{Ui@{Ui}} 3 | -------------------------------------------------------------------------------- /docs/libjpconj/search/classes_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['lemmatization',['Lemmatization',['../class_lemmatization.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /pack/debian/jpconj.install: -------------------------------------------------------------------------------- 1 | /usr/bin/* /usr/bin/ 2 | /usr/share/jpconj/* /usr/share/jpconj/ 3 | /usr/share/applications/* /usr/share/applications/ -------------------------------------------------------------------------------- /jpconj/Media/about/about_ar: -------------------------------------------------------------------------------- 1 | 2 |

3 | تطبيق لتصريف الأفعال اليابانية. 4 |

-------------------------------------------------------------------------------- /jpconj/Media/about/about_en: -------------------------------------------------------------------------------- 1 | 2 |

3 | A Japanese verb Conjugation application. 4 |

-------------------------------------------------------------------------------- /docs/libjpconj/search/all_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['aform',['aForm',['../class_verbstem.html#aeed17d02506f4897fa36a45b04d39d03',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['form',['form',['../struct_verb_info.html#a0627c1bdb705b21667a027d22cefe3cf',1,'VerbInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['oform',['oForm',['../class_verbstem.html#a8ceb9efb6447e43b002261e5d7bfb30a',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['uform',['uForm',['../class_verbstem.html#a254499c56ea44fe139f8d4f605dc670f',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['name',['name',['../class_styleinfo.html#ae3a7adfee45d7417a5d4b402078be819',1,'Styleinfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['rtl',['rtl',['../class_func_frame.html#a9afcf2865055116446b9f50406bb1c12',1,'FuncFrame']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/enums_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cform',['CForm',['../type_defs_8h.html#af45f1339984167e7b556ced32eca2472',1,'typeDefs.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/enums_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['kform',['KForm',['../type_defs_8h.html#a0cdb0ab5f8f266dbb06760ee6b178cc3',1,'typeDefs.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /jpconj/Media/about/about_fr: -------------------------------------------------------------------------------- 1 | 2 |

3 | Une application pour Conjugaison des verbes japonais. 4 |

-------------------------------------------------------------------------------- /docs/jpconj/search/defines_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['no_5fuse_5ffunc',['NO_USE_FUNC',['../msg_8h.html#a403ae837e4619d61875ba4316dd46c45',1,'msg.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_11.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tatoeba',['Tatoeba',['../class_tatoeba.html#a175733012dbae0d21c19ba7569efd837',1,'Tatoeba']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/typedefs_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pairtrans',['PairTrans',['../language_8h.html#ae897088620900770712f299b9302ff40',1,'language.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['author',['author',['../class_styleinfo.html#aecc1699be81d540afaeb2885364418d4',1,'Styleinfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/enums_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['edicttype',['EdictType',['../type_defs_8h.html#a44f9030d5e119edcb703fea53ceb7a1b',1,'typeDefs.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['aform',['aForm',['../class_verbstem.html#aeed17d02506f4897fa36a45b04d39d03',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['iform',['iForm',['../class_verbstem.html#a5f7907f96147bd43d6ceb406e8625b46',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['oform',['oForm',['../class_verbstem.html#a8ceb9efb6447e43b002261e5d7bfb30a',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tform',['tForm',['../class_verbstem.html#ade956b530e7399c0dc3621beaeb9d289',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['uform',['uForm',['../class_verbstem.html#a254499c56ea44fe139f8d4f605dc670f',1,'Verbstem']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['form',['form',['../struct_verb_info.html#a0627c1bdb705b21667a027d22cefe3cf',1,'VerbInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['verb',['verb',['../struct_verb_info.html#acde65c6cfad112c1811570cb325a44f8',1,'VerbInfo']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['wheelevent',['wheelEvent',['../class_help_viewer.html#a700d19b911c5cfbfa691cb776a274547',1,'HelpViewer']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['kanji',['kanji',['../struct_edict2_1_1_ja_verb.html#ad475022674b9a9d0e795f50586d4ba99',1,'Edict2::JaVerb']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['main_2ecpp',['main.cpp',['../main_8cpp.html',1,'']]], 4 | ['msg_2eh',['msg.h',['../msg_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jap',['jap',['../struct_tatoeba_1_1_exp.html#a6aedde568a43468dcd805cbb54b116d5',1,'Tatoeba::Exp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['lang',['lang',['../struct_tatoeba_1_1_exp.html#ace9271a99787d348081203b07718ab0e',1,'Tatoeba::Exp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/defines_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['_5fendchars',['_endChars',['../type_defs_8h.html#a4045435578d3856735cc77406bc9de05',1,'typeDefs.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_12.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['wheelevent',['wheelEvent',['../class_help_viewer.html#a700d19b911c5cfbfa691cb776a274547',1,'HelpViewer']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['kanji',['kanji',['../struct_edict2_1_1_ja_verb.html#ad475022674b9a9d0e795f50586d4ba99',1,'Edict2::JaVerb']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['stylesheet',['stylesheet',['../class_func_frame.html#a62f747a890411dd79469f66dcb853f3c',1,'FuncFrame']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['type',['type',['../struct_edict2_1_1_ja_verb.html#afd43ce42c23585223a81b18ff69345f6',1,'Edict2::JaVerb']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['style',['Style',['../class_style.html',1,'']]], 4 | ['styleinfo',['Styleinfo',['../class_styleinfo.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['about_2ecpp',['about.cpp',['../about_8cpp.html',1,'']]], 4 | ['about_2eh',['about.h',['../about_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['icona_2ecpp',['icona.cpp',['../icona_8cpp.html',1,'']]], 4 | ['icona_2eh',['icona.h',['../icona_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['style_2ecpp',['style.cpp',['../style_8cpp.html',1,'']]], 4 | ['style_2eh',['style.h',['../style_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tatoeba_2ecpp',['tatoeba.cpp',['../tatoeba_8cpp.html',1,'']]], 4 | ['tatoeba_2eh',['tatoeba.h',['../tatoeba_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/classes_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['verbinfo',['VerbInfo',['../struct_verb_info.html',1,'']]], 4 | ['verbstem',['Verbstem',['../class_verbstem.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['lemmatization',['Lemmatization',['../class_lemmatization.html#a88a221e7d459b851a716aa1c18ac44c7',1,'Lemmatization']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['language_2ecpp',['language.cpp',['../language_8cpp.html',1,'']]], 4 | ['language_2eh',['language.h',['../language_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/defines_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['qkiconashared_5fexport',['QKICONASHARED_EXPORT',['../qkicona__global_8h.html#ad87e4ed66e64c95f0dd6fa5b99a3472e',1,'qkicona_global.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/files_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['verbstem_2ecpp',['verbstem.cpp',['../verbstem_8cpp.html',1,'']]], 4 | ['verbstem_2eh',['verbstem.h',['../verbstem_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['conjframe_2ecpp',['conjframe.cpp',['../conjframe_8cpp.html',1,'']]], 4 | ['conjframe_2eh',['conjframe.h',['../conjframe_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['funcframe_2ecpp',['funcframe.cpp',['../funcframe_8cpp.html',1,'']]], 4 | ['funcframe_2eh',['funcframe.h',['../funcframe_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/defines_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['libjpconjshared_5fexport',['LIBJPCONJSHARED_EXPORT',['../jpconj__global_8h.html#a19ada3f4aae0a9f983051b5e7a1185d3',1,'jpconj_global.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['helpviewer_2ecpp',['helpviewer.cpp',['../helpviewer_8cpp.html',1,'']]], 4 | ['helpviewer_2eh',['helpviewer.h',['../helpviewer_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preference_2ecpp',['preference.cpp',['../preference_8cpp.html',1,'']]], 4 | ['preference_2eh',['preference.h',['../preference_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['qkicona_2eh',['qkicona.h',['../qkicona_8h.html',1,'']]], 4 | ['qkicona_5fglobal_2eh',['qkicona_global.h',['../qkicona__global_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['inflection_2ecpp',['inflection.cpp',['../inflection_8cpp.html',1,'']]], 4 | ['inflection_2eh',['inflection.h',['../inflection_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tform',['tForm',['../class_verbstem.html#ade956b530e7399c0dc3621beaeb9d289',1,'Verbstem']]], 4 | ['typedefs_2eh',['typeDefs.h',['../type_defs_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/files_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['lemmatization_2ecpp',['lemmatization.cpp',['../lemmatization_8cpp.html',1,'']]], 4 | ['lemmatization_2eh',['lemmatization.h',['../lemmatization_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['edict2',['Edict2',['../class_edict2.html',1,'']]], 4 | ['exp',['Exp',['../struct_tatoeba_1_1_exp.html',1,'Tatoeba']]], 5 | ['export',['Export',['../class_export.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['open',['open',['../class_conj_frame.html#a537f0460a54225d55949d6b0da7a0da7',1,'ConjFrame::open()'],['../class_func_frame.html#ac207df67eedfb7befd9c4eff4adb055b',1,'FuncFrame::open()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['open',['open',['../class_conj_frame.html#a537f0460a54225d55949d6b0da7a0da7',1,'ConjFrame::open()'],['../class_func_frame.html#ac207df67eedfb7befd9c4eff4adb055b',1,'FuncFrame::open()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/latex.jpconj/edict2_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{edict2_8cpp}{}\section{jpconj/\+Func/edict2.cpp File Reference} 2 | \label{edict2_8cpp}\index{jpconj/\+Func/edict2.\+cpp@{jpconj/\+Func/edict2.\+cpp}} 3 | {\ttfamily \#include \char`\"{}edict2.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/latex.jpconj/jtrans_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jtrans_8cpp}{}\section{jpconj/\+Func/jtrans.cpp File Reference} 2 | \label{jtrans_8cpp}\index{jpconj/\+Func/jtrans.\+cpp@{jpconj/\+Func/jtrans.\+cpp}} 3 | {\ttfamily \#include \char`\"{}jtrans.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['date',['date',['../class_styleinfo.html#a6b42ab079973bbbb98daf43d458f55cb',1,'Styleinfo']]], 4 | ['desc',['desc',['../class_styleinfo.html#a20d335e74f4b6eb61ff68ea6fd5d5097',1,'Styleinfo']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/latex.jpconj/tatoeba_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{tatoeba_8cpp}{}\section{jpconj/\+Func/tatoeba.cpp File Reference} 2 | \label{tatoeba_8cpp}\index{jpconj/\+Func/tatoeba.\+cpp@{jpconj/\+Func/tatoeba.\+cpp}} 3 | {\ttfamily \#include \char`\"{}tatoeba.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/verbstem_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{verbstem_8cpp}{}\section{libjpconj/verbstem.cpp File Reference} 2 | \label{verbstem_8cpp}\index{libjpconj/verbstem.\+cpp@{libjpconj/verbstem.\+cpp}} 3 | {\ttfamily \#include \char`\"{}verbstem.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /jpconj/Media/output.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | output/standardConj 4 | output/basicConj 5 | output/complexConj 6 | output/verbInfo 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['newverb',['newVerb',['../class_conj_frame.html#ae6de44e9ee2529edcaed75e740d08537',1,'ConjFrame::newVerb()'],['../class_func_frame.html#a7e5ad4d47567e5564bc462175b0fa824',1,'FuncFrame::newVerb()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/latex.jpconj/icona_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{icona_8cpp}{}\section{jpconj/\+Ui\+Helper/icona.cpp File Reference} 2 | \label{icona_8cpp}\index{jpconj/\+Ui\+Helper/icona.\+cpp@{jpconj/\+Ui\+Helper/icona.\+cpp}} 3 | {\ttfamily \#include \char`\"{}icona.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/latex.jpconj/style_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{style_8cpp}{}\section{jpconj/\+Ui\+Helper/style.cpp File Reference} 2 | \label{style_8cpp}\index{jpconj/\+Ui\+Helper/style.\+cpp@{jpconj/\+Ui\+Helper/style.\+cpp}} 3 | {\ttfamily \#include \char`\"{}style.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['preference',['Preference',['../class_preference.html#a6a80d4f65d8d74d3777c04854d9e8db3',1,'Preference']]], 4 | ['print',['print',['../class_export.html#a833a346f1f72b273fb9e46d602cc458b',1,'Export']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['conjugate',['Conjugate',['../class_jp_conj.html#a85a93722d4f8df3bf0f7555559f66dcd',1,'JpConj::Conjugate()'],['../class_inflection.html#a669ca41547486d284d020490a4655666',1,'Inflection::conjugate()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['eform',['eForm',['../class_verbstem.html#abfba98ad5122aa0b78f31b8ff55bac7d',1,'Verbstem']]], 4 | ['eimpform',['eImpForm',['../class_verbstem.html#aacebbfba4fd6f8832bf409b5dd52b107',1,'Verbstem']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['katsuyou',['Katsuyou',['../class_jp_conj.html#a4b04051abf112cede08db31f209fcee7',1,'JpConj::Katsuyou()'],['../class_inflection.html#ab39ea3efc26e655370b97878564db34b',1,'Inflection::katsuyou()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/latex.jpconj/export_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{export_8cpp}{}\section{jpconj/\+Ui\+Helper/export.cpp File Reference} 2 | \label{export_8cpp}\index{jpconj/\+Ui\+Helper/export.\+cpp@{jpconj/\+Ui\+Helper/export.\+cpp}} 3 | {\ttfamily \#include \char`\"{}export.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/inflection_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{inflection_8cpp}{}\section{libjpconj/inflection.cpp File Reference} 2 | \label{inflection_8cpp}\index{libjpconj/inflection.\+cpp@{libjpconj/inflection.\+cpp}} 3 | {\ttfamily \#include \char`\"{}inflection.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deconjugate',['deConjugate',['../class_jp_conj.html#a04eea8c2871f9a4db32a567f09cc64b1',1,'JpConj::deConjugate()'],['../jpconj_8cpp.html#af4ad641cdba675681df9884f740bd704',1,'deConjugate(): jpconj.cpp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/enums_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['polarity',['Polarity',['../type_defs_8h.html#a84a045fa4024e050ca8be6d33311a054',1,'typeDefs.h']]], 4 | ['politeness',['Politeness',['../type_defs_8h.html#ab4f7d298d5c6d08f0a7cd0fdd1ac1f2e',1,'typeDefs.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/files_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jpconj_2ecpp',['jpconj.cpp',['../jpconj_8cpp.html',1,'']]], 4 | ['jpconj_2eh',['jpconj.h',['../jpconj_8h.html',1,'']]], 5 | ['jpconj_5fglobal_2eh',['jpconj_global.h',['../jpconj__global_8h.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/libjpconj/search/functions_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deconjugate',['deConjugate',['../class_jp_conj.html#a04eea8c2871f9a4db32a567f09cc64b1',1,'JpConj::deConjugate()'],['../jpconj_8cpp.html#af4ad641cdba675681df9884f740bd704',1,'deConjugate(): jpconj.cpp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /jpconj/Media/img/README.md: -------------------------------------------------------------------------------- 1 | =============== 2 | **Images** 3 | =============== 4 | Please refer to this project for icons: [KIcona](https://github.com/kariminf/K-Icona). 5 | The icons are created using [Gimp](https://www.gimp.org), choose a theme and export them as PNG to this folder. 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['loadstyles',['loadStyles',['../class_style.html#aba44fc6be77df65cfd35b4b27e7f61d7',1,'Style']]], 4 | ['loadtranslations',['loadTranslations',['../class_language.html#aeebc39360aef6d5fd053fd60b6ddc99a',1,'Language']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/latex.jpconj/language_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{language_8cpp}{}\section{jpconj/\+Ui\+Helper/language.cpp File Reference} 2 | \label{language_8cpp}\index{jpconj/\+Ui\+Helper/language.\+cpp@{jpconj/\+Ui\+Helper/language.\+cpp}} 3 | {\ttfamily \#include \char`\"{}language.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/libjpconj/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['polarity',['polarity',['../struct_verb_info.html#abc9aa0ab9b1ee7615b1ddbaf23b84edf',1,'VerbInfo']]], 4 | ['politeness',['politeness',['../struct_verb_info.html#a39c85beda0f6c34824f1c687b55fdc88',1,'VerbInfo']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/jpconj/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hascontent',['hasContent',['../class_func_frame.html#a9e2ab69ca54b7f45ab9b314b5a2d94ff',1,'FuncFrame']]], 4 | ['hiragana',['hiragana',['../struct_edict2_1_1_ja_verb.html#aeeb10cd2c52d733738c2236bbbeb7bd4',1,'Edict2::JaVerb']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/latex.jpconj/funcframe_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{funcframe_8cpp}{}\section{jpconj/\+Ui\+Helper/funcframe.cpp File Reference} 2 | \label{funcframe_8cpp}\index{jpconj/\+Ui\+Helper/funcframe.\+cpp@{jpconj/\+Ui\+Helper/funcframe.\+cpp}} 3 | {\ttfamily \#include \char`\"{}funcframe.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/lemmatization_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{lemmatization_8cpp}{}\section{libjpconj/lemmatization.cpp File Reference} 2 | \label{lemmatization_8cpp}\index{libjpconj/lemmatization.\+cpp@{libjpconj/lemmatization.\+cpp}} 3 | {\ttfamily \#include \char`\"{}lemmatization.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/latex.jpconj/jpconjtray_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jpconjtray_8cpp}{}\section{jpconj/\+Ui\+Helper/jpconjtray.cpp File Reference} 2 | \label{jpconjtray_8cpp}\index{jpconj/\+Ui\+Helper/jpconjtray.\+cpp@{jpconj/\+Ui\+Helper/jpconjtray.\+cpp}} 3 | {\ttfamily \#include \char`\"{}jpconjtray.\+h\char`\"{}}\\* 4 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/Ui.3: -------------------------------------------------------------------------------- 1 | .TH "Ui" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | Ui \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SH "Author" 10 | .PP 11 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 12 | -------------------------------------------------------------------------------- /docs/latex.jpconj/about_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{about_8cpp}{}\section{jpconj/\+Ui/about.cpp File Reference} 2 | \label{about_8cpp}\index{jpconj/\+Ui/about.\+cpp@{jpconj/\+Ui/about.\+cpp}} 3 | {\ttfamily \#include \char`\"{}about.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}ui\+\_\+about.\+h\char`\"{}}\\* 5 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['edict2_2ecpp',['edict2.cpp',['../edict2_8cpp.html',1,'']]], 4 | ['edict2_2eh',['edict2.h',['../edict2_8h.html',1,'']]], 5 | ['export_2ecpp',['export.cpp',['../export_8cpp.html',1,'']]], 6 | ['export_2eh',['export.h',['../export_8h.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jpconj',['JpConj',['../class_jp_conj.html',1,'']]], 4 | ['jpconj_2ecpp',['jpconj.cpp',['../jpconj_8cpp.html',1,'']]], 5 | ['jpconj_2eh',['jpconj.h',['../jpconj_8h.html',1,'']]], 6 | ['jpconj_5fglobal_2eh',['jpconj_global.h',['../jpconj__global_8h.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/latex.jpconj/conjframe_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{conjframe_8cpp}{}\section{jpconj/\+Ui/conjframe.cpp File Reference} 2 | \label{conjframe_8cpp}\index{jpconj/\+Ui/conjframe.\+cpp@{jpconj/\+Ui/conjframe.\+cpp}} 3 | {\ttfamily \#include \char`\"{}conjframe.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}ui\+\_\+conjframe.\+h\char`\"{}}\\* 5 | -------------------------------------------------------------------------------- /docs/latex.jpconj/jpconjhelp_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jpconjhelp_8cpp}{}\section{jpconj/\+Ui/jpconjhelp.cpp File Reference} 2 | \label{jpconjhelp_8cpp}\index{jpconj/\+Ui/jpconjhelp.\+cpp@{jpconj/\+Ui/jpconjhelp.\+cpp}} 3 | {\ttfamily \#include \char`\"{}jpconjhelp.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}ui\+\_\+jpconjhelp.\+h\char`\"{}}\\* 5 | -------------------------------------------------------------------------------- /docs/latex.jpconj/jpconjmain_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jpconjmain_8cpp}{}\section{jpconj/\+Ui/jpconjmain.cpp File Reference} 2 | \label{jpconjmain_8cpp}\index{jpconj/\+Ui/jpconjmain.\+cpp@{jpconj/\+Ui/jpconjmain.\+cpp}} 3 | {\ttfamily \#include \char`\"{}jpconjmain.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}ui\+\_\+jpconjmain.\+h\char`\"{}}\\* 5 | -------------------------------------------------------------------------------- /docs/latex.jpconj/namespaces.tex: -------------------------------------------------------------------------------- 1 | \section{Namespace List} 2 | Here is a list of all namespaces with brief descriptions\+:\begin{DoxyCompactList} 3 | \item\contentsline{section}{\hyperlink{namespace_msg}{Msg} }{\pageref{namespace_msg}}{} 4 | \item\contentsline{section}{\hyperlink{namespace_ui}{Ui} }{\pageref{namespace_ui}}{} 5 | \end{DoxyCompactList} 6 | -------------------------------------------------------------------------------- /docs/latex.jpconj/preference_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{preference_8cpp}{}\section{jpconj/\+Ui/preference.cpp File Reference} 2 | \label{preference_8cpp}\index{jpconj/\+Ui/preference.\+cpp@{jpconj/\+Ui/preference.\+cpp}} 3 | {\ttfamily \#include \char`\"{}preference.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}ui\+\_\+preference.\+h\char`\"{}}\\* 5 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cform',['CForm',['../type_defs_8h.html#af45f1339984167e7b556ced32eca2472',1,'typeDefs.h']]], 4 | ['conjugate',['Conjugate',['../class_jp_conj.html#a85a93722d4f8df3bf0f7555559f66dcd',1,'JpConj::Conjugate()'],['../class_inflection.html#a669ca41547486d284d020490a4655666',1,'Inflection::conjugate()']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['katsuyou',['Katsuyou',['../class_jp_conj.html#a4b04051abf112cede08db31f209fcee7',1,'JpConj::Katsuyou()'],['../class_inflection.html#ab39ea3efc26e655370b97878564db34b',1,'Inflection::katsuyou()']]], 4 | ['kform',['KForm',['../type_defs_8h.html#a0cdb0ab5f8f266dbb06760ee6b178cc3',1,'typeDefs.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/lemmatization_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{lemmatization_8h}{}\section{libjpconj/lemmatization.h File Reference} 2 | \label{lemmatization_8h}\index{libjpconj/lemmatization.\+h@{libjpconj/lemmatization.\+h}} 3 | \subsection*{Classes} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | class \hyperlink{class_lemmatization}{Lemmatization} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QFrame.3: -------------------------------------------------------------------------------- 1 | .TH "QFrame" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QFrame \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBFuncFrame\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['edicttype',['EdictType',['../type_defs_8h.html#a44f9030d5e119edcb703fea53ceb7a1b',1,'typeDefs.h']]], 4 | ['eform',['eForm',['../class_verbstem.html#abfba98ad5122aa0b78f31b8ff55bac7d',1,'Verbstem']]], 5 | ['eimpform',['eImpForm',['../class_verbstem.html#aacebbfba4fd6f8832bf409b5dd52b107',1,'Verbstem']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QWebPage.3: -------------------------------------------------------------------------------- 1 | .TH "QWebPage" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QWebPage \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBHelpPage\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['iform',['iForm',['../class_verbstem.html#a5f7907f96147bd43d6ceb406e8625b46',1,'Verbstem']]], 4 | ['inflection',['Inflection',['../class_inflection.html',1,'']]], 5 | ['inflection_2ecpp',['inflection.cpp',['../inflection_8cpp.html',1,'']]], 6 | ['inflection_2eh',['inflection.h',['../inflection_8h.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QWebView.3: -------------------------------------------------------------------------------- 1 | .TH "QWebView" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QWebView \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBHelpViewer\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QObject.3: -------------------------------------------------------------------------------- 1 | .TH "QObject" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QObject \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBIcona\fP, and \fBStyle\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QDialog.3: -------------------------------------------------------------------------------- 1 | .TH "QDialog" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QDialog \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBAbout\fP, and \fBPreference\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['helpnetworkaccessmanager',['HelpNetworkAccessManager',['../class_help_network_access_manager.html',1,'']]], 4 | ['helpnetworkreply',['HelpNetworkReply',['../class_help_network_reply.html',1,'']]], 5 | ['helppage',['HelpPage',['../class_help_page.html',1,'']]], 6 | ['helpviewer',['HelpViewer',['../class_help_viewer.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QNetworkReply.3: -------------------------------------------------------------------------------- 1 | .TH "QNetworkReply" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QNetworkReply \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBHelpNetworkReply\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QSystemTrayIcon.3: -------------------------------------------------------------------------------- 1 | .TH "QSystemTrayIcon" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QSystemTrayIcon \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBJpconjTray\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['javerb',['JaVerb',['../struct_edict2_1_1_ja_verb.html',1,'Edict2']]], 4 | ['jpconjhelp',['jpconjhelp',['../classjpconjhelp.html',1,'']]], 5 | ['jpconjmain',['jpconjmain',['../classjpconjmain.html',1,'']]], 6 | ['jpconjtray',['JpconjTray',['../class_jpconj_tray.html',1,'']]], 7 | ['jtrans',['JTrans',['../class_j_trans.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/edict2.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Func/edict2.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Func/edict2.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'edict2\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/icona.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/icona.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/icona.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'icona\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/jtrans.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Func/jtrans.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Func/jtrans.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'jtrans\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/style.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/style.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/style.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'style\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/tatoeba.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Func/tatoeba.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Func/tatoeba.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'tatoeba\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['main',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]], 4 | ['mainwindowdirection',['mainWindowDirection',['../class_language.html#a41e794bd617d77954179da57c2093412',1,'Language']]], 5 | ['mousereleaseevent',['mouseReleaseEvent',['../class_help_viewer.html#a29a0f16331e4fb8900e7670800a53002',1,'HelpViewer']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QMainWindow.3: -------------------------------------------------------------------------------- 1 | .TH "QMainWindow" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QMainWindow \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBjpconjhelp\fP, and \fBjpconjmain\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/export.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/export.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/export.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'export\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/verbstem.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/verbstem.cpp" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/verbstem.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'verbstem\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/language.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/language.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/language.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'language\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/inflection.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/inflection.cpp" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/inflection.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'inflection\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /jpconj/Media/about/authors_ja: -------------------------------------------------------------------------------- 1 | 2 |

3 | アブド.アル.カリム アリエス 4 | (kariminfo0@gmail.com) 5 |
6 | 主要な開発者 7 |

8 | 9 |

10 | ザカリア スマヒー 11 | (zakaria08esi@gmail.com) 12 |
13 | バグの修正&ドキュメント
14 | フランス語の翻訳 15 |

-------------------------------------------------------------------------------- /docs/man.jpconj/man3/_home_kariminf_Github_Projects_japkatsuyou_jpconj_3rdParty_.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/3rdParty Directory Reference" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/3rdParty Directory Reference \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Directories" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "directory \fBQKIcona\fP" 14 | .br 15 | .in -1c 16 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/funcframe.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/funcframe.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/funcframe.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'funcframe\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/jpconjtray.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/jpconjtray.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/jpconjtray.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'jpconjtray\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /jpconj/Media/help/ar.qhcp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ar/help.qhp 7 | ar_help.qch 8 | 9 | 10 | 11 | ar_help.qch 12 | 13 | 14 | -------------------------------------------------------------------------------- /jpconj/Media/help/en.qhcp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | en/help.qhp 7 | en_help.qch 8 | 9 | 10 | 11 | en_help.qch 12 | 13 | 14 | -------------------------------------------------------------------------------- /jpconj/Media/help/fr.qhcp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | fr/help.qhp 7 | fr_help.qch 8 | 9 | 10 | 11 | fr_help.qch 12 | 13 | 14 | -------------------------------------------------------------------------------- /jpconj/Media/help/ja.qhcp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ja/help.qhp 7 | ja_help.qch 8 | 9 | 10 | 11 | ja_help.qch 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['backward',['backward',['../class_help_viewer.html#aae2a10ffc8463decbcdcb4b87cfa30a1',1,'HelpViewer']]], 4 | ['backwardavailable',['backwardAvailable',['../class_help_viewer.html#acaddb370132b3fcd7db01fa70320a1ff',1,'HelpViewer']]], 5 | ['bytesavailable',['bytesAvailable',['../class_help_network_reply.html#ac83808e37737bea2a63bce1a84b2b2fe',1,'HelpNetworkReply']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['verb',['verb',['../struct_verb_info.html#acde65c6cfad112c1811570cb325a44f8',1,'VerbInfo']]], 4 | ['verbinfo',['VerbInfo',['../struct_verb_info.html',1,'']]], 5 | ['verbstem',['Verbstem',['../class_verbstem.html',1,'']]], 6 | ['verbstem_2ecpp',['verbstem.cpp',['../verbstem_8cpp.html',1,'']]], 7 | ['verbstem_2eh',['verbstem.h',['../verbstem_8h.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QNetworkAccessManager.3: -------------------------------------------------------------------------------- 1 | .TH "QNetworkAccessManager" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QNetworkAccessManager \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | Inherited by \fBHelpNetworkAccessManager\fP\&. 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/lemmatization.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/lemmatization.cpp" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/lemmatization.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'lemmatization\&.h'\fP 10 | .br 11 | 12 | .SH "Author" 13 | .PP 14 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 15 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['backward',['backward',['../class_help_viewer.html#aae2a10ffc8463decbcdcb4b87cfa30a1',1,'HelpViewer']]], 4 | ['backwardavailable',['backwardAvailable',['../class_help_viewer.html#acaddb370132b3fcd7db01fa70320a1ff',1,'HelpViewer']]], 5 | ['bytesavailable',['bytesAvailable',['../class_help_network_reply.html#ac83808e37737bea2a63bce1a84b2b2fe',1,'HelpNetworkReply']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/about.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/about.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/about.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'about\&.h'\fP 10 | .br 11 | \fC#include 'ui_about\&.h'\fP 12 | .br 13 | 14 | .SH "Author" 15 | .PP 16 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # C++ objects and libs 2 | 3 | *.slo 4 | *.lo 5 | *.o 6 | *.a 7 | *.la 8 | *.lai 9 | *.so 10 | *.dll 11 | *.dylib 12 | 13 | # Qt-es 14 | 15 | *.pro.user 16 | *.pro.user.* 17 | moc_*.cpp 18 | qrc_*.cpp 19 | Makefile 20 | *-build-* 21 | 22 | *.qm 23 | jpconj-bin/ 24 | libjpconj-bin/ 25 | 26 | *.qhc 27 | *.qch 28 | 29 | #Linux system 30 | 31 | .directory 32 | jpconj/Media/DB/*.db 33 | jpconj/Media/img/*.png 34 | jpconj/3rdParty/ -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_frame.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_frame}{}\section{Q\+Frame Class Reference} 2 | \label{class_q_frame}\index{Q\+Frame@{Q\+Frame}} 3 | 4 | 5 | Inherited by \hyperlink{class_func_frame}{Func\+Frame}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui\+Helper/\hyperlink{funcframe_8h}{funcframe.\+h}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/verbstem_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{verbstem_8h}{}\section{libjpconj/verbstem.h File Reference} 2 | \label{verbstem_8h}\index{libjpconj/verbstem.\+h@{libjpconj/verbstem.\+h}} 3 | {\ttfamily \#include \char`\"{}type\+Defs.\+h\char`\"{}}\\* 4 | {\ttfamily \#include $<$Q\+String$>$}\\* 5 | \subsection*{Classes} 6 | \begin{DoxyCompactItemize} 7 | \item 8 | class \hyperlink{class_verbstem}{Verbstem} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /jpconj/Media/about/authors_en: -------------------------------------------------------------------------------- 1 | 2 |

3 | Abdelkrime Aries 4 | (kariminfo0@gmail.com) 5 |
6 | Main developer 7 |

8 | 9 |

10 | Zakaria Smahi 11 | (zakaria08esi@gmail.com) 12 |
13 | Bug fixing & documentation
14 | French translation 15 |

-------------------------------------------------------------------------------- /docs/jpconj/search/all_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tatoeba',['Tatoeba',['../class_tatoeba.html',1,'Tatoeba'],['../class_tatoeba.html#a175733012dbae0d21c19ba7569efd837',1,'Tatoeba::Tatoeba()']]], 4 | ['tatoeba_2ecpp',['tatoeba.cpp',['../tatoeba_8cpp.html',1,'']]], 5 | ['tatoeba_2eh',['tatoeba.h',['../tatoeba_8h.html',1,'']]], 6 | ['type',['type',['../struct_edict2_1_1_ja_verb.html#afd43ce42c23585223a81b18ff69345f6',1,'Edict2::JaVerb']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/conjframe.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/conjframe.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/conjframe.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'conjframe\&.h'\fP 10 | .br 11 | \fC#include 'ui_conjframe\&.h'\fP 12 | .br 13 | 14 | .SH "Author" 15 | .PP 16 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 17 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_16.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['zoom',['zoom',['../class_conj_frame.html#ad02a4547f6ec085bbf5569ccabcb1cc6',1,'ConjFrame::zoom()'],['../class_func_frame.html#a0872b6db14e325d2637ad405bb0de947',1,'FuncFrame::zoom()']]], 4 | ['zoomin',['zoomIn',['../class_help_viewer.html#ad02962035b72b412ec429e1531963452',1,'HelpViewer']]], 5 | ['zoomout',['zoomOut',['../class_help_viewer.html#aedb6f64c1eef874659ad3e71200eab6b',1,'HelpViewer']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['name',['name',['../class_styleinfo.html#ae3a7adfee45d7417a5d4b402078be819',1,'Styleinfo']]], 4 | ['newverb',['newVerb',['../class_conj_frame.html#ae6de44e9ee2529edcaed75e740d08537',1,'ConjFrame::newVerb()'],['../class_func_frame.html#a7e5ad4d47567e5564bc462175b0fa824',1,'FuncFrame::newVerb()']]], 5 | ['no_5fuse_5ffunc',['NO_USE_FUNC',['../msg_8h.html#a403ae837e4619d61875ba4316dd46c45',1,'msg.h']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_web_page.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_web_page}{}\section{Q\+Web\+Page Class Reference} 2 | \label{class_q_web_page}\index{Q\+Web\+Page@{Q\+Web\+Page}} 3 | 4 | 5 | Inherited by \hyperlink{class_help_page}{Help\+Page}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui/\hyperlink{helpviewer_8cpp}{helpviewer.\+cpp}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_web_view.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_web_view}{}\section{Q\+Web\+View Class Reference} 2 | \label{class_q_web_view}\index{Q\+Web\+View@{Q\+Web\+View}} 3 | 4 | 5 | Inherited by \hyperlink{class_help_viewer}{Help\+Viewer}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui/\hyperlink{helpviewer_8h}{helpviewer.\+h}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex.jpconj/dir_cb8729665185ea129da29a441c98ff02.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_cb8729665185ea129da29a441c98ff02}{}\section{jpconj/3rd\+Party Directory Reference} 2 | \label{dir_cb8729665185ea129da29a441c98ff02}\index{jpconj/3rd\+Party Directory Reference@{jpconj/3rd\+Party Directory Reference}} 3 | \subsection*{Directories} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | directory \hyperlink{dir_6cd8e1785aa148050fc69ce9c3d4496e}{Q\+K\+Icona} 7 | \end{DoxyCompactItemize} 8 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/jpconjhelp.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/jpconjhelp.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/jpconjhelp.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'jpconjhelp\&.h'\fP 10 | .br 11 | \fC#include 'ui_jpconjhelp\&.h'\fP 12 | .br 13 | 14 | .SH "Author" 15 | .PP 16 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 17 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/jpconjmain.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/jpconjmain.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/jpconjmain.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'jpconjmain\&.h'\fP 10 | .br 11 | \fC#include 'ui_jpconjmain\&.h'\fP 12 | .br 13 | 14 | .SH "Author" 15 | .PP 16 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 17 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/preference.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/preference.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/preference.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'preference\&.h'\fP 10 | .br 11 | \fC#include 'ui_preference\&.h'\fP 12 | .br 13 | 14 | .SH "Author" 15 | .PP 16 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 17 | -------------------------------------------------------------------------------- /jpconj/Media/about/authors_ar: -------------------------------------------------------------------------------- 1 | 2 |

3 | عبد الكريم عريس 4 | (kariminfo0@gmail.com) 5 |
6 | المطور الرئيسي 7 |

8 | 9 |

10 | زكرياء سماحي 11 | (zakaria08esi@gmail.com) 12 |
13 | تصحيح الأخطاء والتوثيق
14 | الترجمة الفرنسية 15 |

-------------------------------------------------------------------------------- /docs/jpconj/search/functions_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['zoom',['zoom',['../class_conj_frame.html#ad02a4547f6ec085bbf5569ccabcb1cc6',1,'ConjFrame::zoom()'],['../class_func_frame.html#a0872b6db14e325d2637ad405bb0de947',1,'FuncFrame::zoom()']]], 4 | ['zoomin',['zoomIn',['../class_help_viewer.html#ad02962035b72b412ec429e1531963452',1,'HelpViewer']]], 5 | ['zoomout',['zoomOut',['../class_help_viewer.html#aedb6f64c1eef874659ad3e71200eab6b',1,'HelpViewer']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_object.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_object}{}\section{Q\+Object Class Reference} 2 | \label{class_q_object}\index{Q\+Object@{Q\+Object}} 3 | 4 | 5 | Inherited by \hyperlink{class_icona}{Icona}, and \hyperlink{class_style}{Style}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui\+Helper/\hyperlink{icona_8h}{icona.\+h}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /jpconj/Media/about/authors_fr: -------------------------------------------------------------------------------- 1 | 2 |

3 | Abdelkrime Aries 4 | (kariminfo0@gmail.com) 5 |
6 | Développeur principal 7 |

8 | 9 |

10 | Zakaria Smahi 11 | (zakaria08esi@gmail.com) 12 |
13 | Correction des bogues & documentation
14 | Traduction en Français 15 |

-------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_dialog.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_dialog}{}\section{Q\+Dialog Class Reference} 2 | \label{class_q_dialog}\index{Q\+Dialog@{Q\+Dialog}} 3 | 4 | 5 | Inherited by \hyperlink{class_about}{About}, and \hyperlink{class_preference}{Preference}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui/\hyperlink{preference_8h}{preference.\+h}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/lemmatization.h.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/lemmatization.h" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/lemmatization.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Classes" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "class \fBLemmatization\fP" 14 | .br 15 | .in -1c 16 | .SH "Author" 17 | .PP 18 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 19 | -------------------------------------------------------------------------------- /libjpconj/lemmatization.h: -------------------------------------------------------------------------------- 1 | #ifndef LEMMATIZATION_H 2 | #define LEMMATIZATION_H 3 | 4 | #include "typeDefs.h" 5 | 6 | #include 7 | #include 8 | 9 | 10 | class Lemmatization 11 | { 12 | public: 13 | Lemmatization(); 14 | static QList deConjugate(QString conjVerb); 15 | 16 | private: 17 | static VerbInfo getVerbInfo(QString verb, CForm form, Polarity polarity, Politeness politeness); 18 | 19 | }; 20 | 21 | #endif // LEMMATIZATION_H 22 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['polarity',['polarity',['../struct_verb_info.html#abc9aa0ab9b1ee7615b1ddbaf23b84edf',1,'VerbInfo::polarity()'],['../type_defs_8h.html#a84a045fa4024e050ca8be6d33311a054',1,'Polarity(): typeDefs.h']]], 4 | ['politeness',['politeness',['../struct_verb_info.html#a39c85beda0f6c34824f1c687b55fdc88',1,'VerbInfo::politeness()'],['../type_defs_8h.html#ab4f7d298d5c6d08f0a7cd0fdd1ac1f2e',1,'Politeness(): typeDefs.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- 1 | =========== 2 | **INSTALL** 3 | =========== 4 | 5 | * **Ubuntu & MINT** : tested on Ubuntu 12.10 (quantal) and Mint 14 (Nadia): 6 | 7 | .. code-block:: sh 8 | 9 | $ sudo add-apt-repository ppa:anqafalak/japkatsuyou 10 | $ sudo apt-get update 11 | $ sudo apt-get install jpconj 12 | 13 | * **Windows XP/VISTA/7/8/10** : Download the installer from sourceforge: `latest version `_ 14 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['desconnect',['desconnect',['../class_edict2.html#a0a051927cdec6d9108252d25c92394eb',1,'Edict2::desconnect()'],['../class_tatoeba.html#ac1cad1171858e2fd25b7318158d6afae',1,'Tatoeba::desconnect()']]], 4 | ['doconj',['doConj',['../class_conj_frame.html#a873131af43e9f81162a1881bf8ae9606',1,'ConjFrame']]], 5 | ['documenttitle',['documentTitle',['../class_help_viewer.html#a922412cfbbf882be461c86206fdce514',1,'HelpViewer']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/latex.jpconj/icona_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{icona_8h}{}\section{jpconj/\+Ui\+Helper/icona.h File Reference} 2 | \label{icona_8h}\index{jpconj/\+Ui\+Helper/icona.\+h@{jpconj/\+Ui\+Helper/icona.\+h}} 3 | {\ttfamily \#include \char`\"{}qkicona.\+h\char`\"{}}\\* 4 | {\ttfamily \#include $<$Q\+Settings$>$}\\* 5 | {\ttfamily \#include $<$Q\+Icon$>$}\\* 6 | \subsection*{Classes} 7 | \begin{DoxyCompactItemize} 8 | \item 9 | class \hyperlink{class_icona}{Icona} 10 | \end{DoxyCompactItemize} 11 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jpconjhelp',['jpconjhelp',['../classjpconjhelp.html#a00e909486d8b701933d611a472c3ea2e',1,'jpconjhelp']]], 4 | ['jpconjmain',['jpconjmain',['../classjpconjmain.html#a37b7bf9565ef998a6ec4f69e4406fa05',1,'jpconjmain']]], 5 | ['jpconjtray',['JpconjTray',['../class_jpconj_tray.html#aa6ee3ce6f9c81b437607a8dfa8263278',1,'JpconjTray']]], 6 | ['jtrans',['JTrans',['../class_j_trans.html#a3d80ce32ca9d9250ac7af6a1a04fe02c',1,'JTrans']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/_home_kariminf_Github_Projects_japkatsuyou_jpconj_3rdParty_QKIcona_.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/3rdParty/QKIcona Directory Reference" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/3rdParty/QKIcona Directory Reference \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Files" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "file \fBqkicona\&.h\fP" 14 | .br 15 | .ti -1c 16 | .RI "file \fBqkicona_global\&.h\fP" 17 | .br 18 | .in -1c 19 | -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_network_reply.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_network_reply}{}\section{Q\+Network\+Reply Class Reference} 2 | \label{class_q_network_reply}\index{Q\+Network\+Reply@{Q\+Network\+Reply}} 3 | 4 | 5 | Inherited by \hyperlink{class_help_network_reply}{Help\+Network\+Reply}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui/\hyperlink{helpviewer_8cpp}{helpviewer.\+cpp}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /pack/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | # Sample debian/rules that uses debhelper. 4 | # This file was originally written by Joey Hess and Craig Small. 5 | # As a special exception, when this file is copied by dh-make into a 6 | # dh-make output file, you may use that output file without restriction. 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. 8 | 9 | # Uncomment this to turn on verbose mode. 10 | #export DH_VERBOSE=1 11 | 12 | %: 13 | dh $@ 14 | -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_main_window.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_main_window}{}\section{Q\+Main\+Window Class Reference} 2 | \label{class_q_main_window}\index{Q\+Main\+Window@{Q\+Main\+Window}} 3 | 4 | 5 | Inherited by \hyperlink{classjpconjhelp}{jpconjhelp}, and \hyperlink{classjpconjmain}{jpconjmain}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui/\hyperlink{jpconjmain_8h}{jpconjmain.\+h}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_system_tray_icon.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_system_tray_icon}{}\section{Q\+System\+Tray\+Icon Class Reference} 2 | \label{class_q_system_tray_icon}\index{Q\+System\+Tray\+Icon@{Q\+System\+Tray\+Icon}} 3 | 4 | 5 | Inherited by \hyperlink{class_jpconj_tray}{Jpconj\+Tray}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui\+Helper/\hyperlink{jpconjtray_8h}{jpconjtray.\+h}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/inflection_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{inflection_8h}{}\section{libjpconj/inflection.h File Reference} 2 | \label{inflection_8h}\index{libjpconj/inflection.\+h@{libjpconj/inflection.\+h}} 3 | {\ttfamily \#include \char`\"{}type\+Defs.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}verbstem.\+h\char`\"{}}\\* 5 | {\ttfamily \#include $<$Q\+String$>$}\\* 6 | \subsection*{Classes} 7 | \begin{DoxyCompactItemize} 8 | \item 9 | class \hyperlink{class_inflection}{Inflection} 10 | \end{DoxyCompactItemize} 11 | -------------------------------------------------------------------------------- /docs/jpconj/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/libjpconj/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/verbstem.h.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/verbstem.h" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/verbstem.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'typeDefs\&.h'\fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | 14 | .SS "Classes" 15 | 16 | .in +1c 17 | .ti -1c 18 | .RI "class \fBVerbstem\fP" 19 | .br 20 | .in -1c 21 | .SH "Author" 22 | .PP 23 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 24 | -------------------------------------------------------------------------------- /docs/latex.jpconj/dir_6cd8e1785aa148050fc69ce9c3d4496e.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_6cd8e1785aa148050fc69ce9c3d4496e}{}\section{jpconj/3rd\+Party/\+Q\+K\+Icona Directory Reference} 2 | \label{dir_6cd8e1785aa148050fc69ce9c3d4496e}\index{jpconj/3rd\+Party/\+Q\+K\+Icona Directory Reference@{jpconj/3rd\+Party/\+Q\+K\+Icona Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{qkicona_8h}{qkicona.\+h} 7 | \item 8 | file \hyperlink{qkicona__global_8h}{qkicona\+\_\+global.\+h} 9 | \end{DoxyCompactItemize} 10 | -------------------------------------------------------------------------------- /docs/libjpconj/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['lemmatization',['Lemmatization',['../class_lemmatization.html',1,'Lemmatization'],['../class_lemmatization.html#a88a221e7d459b851a716aa1c18ac44c7',1,'Lemmatization::Lemmatization()']]], 4 | ['lemmatization_2ecpp',['lemmatization.cpp',['../lemmatization_8cpp.html',1,'']]], 5 | ['lemmatization_2eh',['lemmatization.h',['../lemmatization_8h.html',1,'']]], 6 | ['libjpconjshared_5fexport',['LIBJPCONJSHARED_EXPORT',['../jpconj__global_8h.html#a19ada3f4aae0a9f983051b5e7a1185d3',1,'jpconj_global.h']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/latex.jpconj/edict2_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{edict2_8h}{}\section{jpconj/\+Func/edict2.h File Reference} 2 | \label{edict2_8h}\index{jpconj/\+Func/edict2.\+h@{jpconj/\+Func/edict2.\+h}} 3 | {\ttfamily \#include \char`\"{}type\+Defs.\+h\char`\"{}}\\* 4 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 5 | {\ttfamily \#include $<$Qt\+Sql/\+Qt\+Sql$>$}\\* 6 | \subsection*{Classes} 7 | \begin{DoxyCompactItemize} 8 | \item 9 | class \hyperlink{class_edict2}{Edict2} 10 | \item 11 | struct \hyperlink{struct_edict2_1_1_ja_verb}{Edict2\+::\+Ja\+Verb} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['main',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]], 4 | ['main_2ecpp',['main.cpp',['../main_8cpp.html',1,'']]], 5 | ['mainwindowdirection',['mainWindowDirection',['../class_language.html#a41e794bd617d77954179da57c2093412',1,'Language']]], 6 | ['mousereleaseevent',['mouseReleaseEvent',['../class_help_viewer.html#a29a0f16331e4fb8900e7670800a53002',1,'HelpViewer']]], 7 | ['msg',['Msg',['../namespace_msg.html',1,'']]], 8 | ['msg_2eh',['msg.h',['../msg_8h.html',1,'']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pairtrans',['PairTrans',['../language_8h.html#ae897088620900770712f299b9302ff40',1,'language.h']]], 4 | ['preference',['Preference',['../class_preference.html',1,'Preference'],['../class_preference.html#a6a80d4f65d8d74d3777c04854d9e8db3',1,'Preference::Preference()']]], 5 | ['preference_2ecpp',['preference.cpp',['../preference_8cpp.html',1,'']]], 6 | ['preference_2eh',['preference.h',['../preference_8h.html',1,'']]], 7 | ['print',['print',['../class_export.html#a833a346f1f72b273fb9e46d602cc458b',1,'Export']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/latex.jpconj/funcframe_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{funcframe_8h}{}\section{jpconj/\+Ui\+Helper/funcframe.h File Reference} 2 | \label{funcframe_8h}\index{jpconj/\+Ui\+Helper/funcframe.\+h@{jpconj/\+Ui\+Helper/funcframe.\+h}} 3 | {\ttfamily \#include $<$Q\+Frame$>$}\\* 4 | {\ttfamily \#include $<$Q\+Web\+View$>$}\\* 5 | {\ttfamily \#include $<$Q\+Dir$>$}\\* 6 | {\ttfamily \#include \char`\"{}Ui\+Helper/export.\+h\char`\"{}}\\* 7 | \subsection*{Classes} 8 | \begin{DoxyCompactItemize} 9 | \item 10 | class \hyperlink{class_func_frame}{Func\+Frame} 11 | \end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/icona.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/icona.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/icona.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'qkicona\&.h'\fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | 16 | .SS "Classes" 17 | 18 | .in +1c 19 | .ti -1c 20 | .RI "class \fBIcona\fP" 21 | .br 22 | .in -1c 23 | .SH "Author" 24 | .PP 25 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 26 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['find',['find',['../class_edict2.html#abc792160e9770e32a682b661a16493ba',1,'Edict2::find()'],['../class_tatoeba.html#a2128196d109866667d0fd44c82ee12a6',1,'Tatoeba::find()']]], 4 | ['fontchanged',['fontChanged',['../class_style.html#a2824b7c9634f202278b9e0f593207628',1,'Style']]], 5 | ['forwardavailable',['forwardAvailable',['../class_help_viewer.html#a147b483dd2a752325e3a9776f0988345',1,'HelpViewer']]], 6 | ['funcframe',['FuncFrame',['../class_func_frame.html#acca8a9c9f954e66a1ea9cd75f1272cfe',1,'FuncFrame']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/latex.jpconj/class_q_network_access_manager.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{class_q_network_access_manager}{}\section{Q\+Network\+Access\+Manager Class Reference} 2 | \label{class_q_network_access_manager}\index{Q\+Network\+Access\+Manager@{Q\+Network\+Access\+Manager}} 3 | 4 | 5 | Inherited by \hyperlink{class_help_network_access_manager}{Help\+Network\+Access\+Manager}. 6 | 7 | 8 | 9 | The documentation for this class was generated from the following file\+:\begin{DoxyCompactItemize} 10 | \item 11 | jpconj/\+Ui/\hyperlink{helpviewer_8cpp}{helpviewer.\+cpp}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/latex.jpconj/tatoeba_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{tatoeba_8h}{}\section{jpconj/\+Func/tatoeba.h File Reference} 2 | \label{tatoeba_8h}\index{jpconj/\+Func/tatoeba.\+h@{jpconj/\+Func/tatoeba.\+h}} 3 | {\ttfamily \#include $<$Q\+List$>$}\\* 4 | {\ttfamily \#include $<$Q\+Map$>$}\\* 5 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 6 | {\ttfamily \#include $<$Qt\+Sql/\+Qt\+Sql$>$}\\* 7 | \subsection*{Classes} 8 | \begin{DoxyCompactItemize} 9 | \item 10 | class \hyperlink{class_tatoeba}{Tatoeba} 11 | \item 12 | struct \hyperlink{struct_tatoeba_1_1_exp}{Tatoeba\+::\+Exp} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/inflection.h.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/inflection.h" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/inflection.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'typeDefs\&.h'\fP 10 | .br 11 | \fC#include 'verbstem\&.h'\fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | 16 | .SS "Classes" 17 | 18 | .in +1c 19 | .ti -1c 20 | .RI "class \fBInflection\fP" 21 | .br 22 | .in -1c 23 | .SH "Author" 24 | .PP 25 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 26 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['lang',['lang',['../struct_tatoeba_1_1_exp.html#ace9271a99787d348081203b07718ab0e',1,'Tatoeba::Exp']]], 4 | ['language',['Language',['../class_language.html',1,'']]], 5 | ['language_2ecpp',['language.cpp',['../language_8cpp.html',1,'']]], 6 | ['language_2eh',['language.h',['../language_8h.html',1,'']]], 7 | ['loadstyles',['loadStyles',['../class_style.html#aba44fc6be77df65cfd35b4b27e7f61d7',1,'Style']]], 8 | ['loadtranslations',['loadTranslations',['../class_language.html#aeebc39360aef6d5fd053fd60b6ddc99a',1,'Language']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /docs/latex.jpconj/helpviewer_8cpp.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{helpviewer_8cpp}{}\section{jpconj/\+Ui/helpviewer.cpp File Reference} 2 | \label{helpviewer_8cpp}\index{jpconj/\+Ui/helpviewer.\+cpp@{jpconj/\+Ui/helpviewer.\+cpp}} 3 | {\ttfamily \#include \char`\"{}helpviewer.\+h\char`\"{}}\\* 4 | \subsection*{Classes} 5 | \begin{DoxyCompactItemize} 6 | \item 7 | class \hyperlink{class_help_network_reply}{Help\+Network\+Reply} 8 | \item 9 | class \hyperlink{class_help_network_access_manager}{Help\+Network\+Access\+Manager} 10 | \item 11 | class \hyperlink{class_help_page}{Help\+Page} 12 | \end{DoxyCompactItemize} 13 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/Lemmatization.3: -------------------------------------------------------------------------------- 1 | .TH "Lemmatization" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | Lemmatization \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | \fC#include \fP 11 | .SS "Public Member Functions" 12 | 13 | .in +1c 14 | .ti -1c 15 | .RI "\fBLemmatization\fP ()" 16 | .br 17 | .in -1c 18 | .SH "Constructor & Destructor Documentation" 19 | .PP 20 | .SS "Lemmatization::Lemmatization ()" 21 | 22 | 23 | .SH "Author" 24 | .PP 25 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 26 | -------------------------------------------------------------------------------- /pack/windows/JapKatsuyou/license/ja.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013-2016 AnqaFalakのグループ 2 | 3 | Copyright 2013 Abdelkrime Aries 4 | (kariminfo0@gmail.com) 5 | 6 | GNU GPLv3 の下で、または後のバージョンの下でライセンスされています。 7 | 8 | 9 | このプログラムはフリーソフトウェアです。あなたはこれを、 10 | フリーソフトウェア財団によって発行されたGNU 一般公衆利用許諾書 11 | (バージョン3か、 それ以降のバージョンのうちどれか) 12 | が定める条件の下で再頒布または改変することができます。 13 | 14 | このプログラムは有用であることを願って頒布されますが、 15 | *全くの無保証 *です。商業可能性の保証や特定目的への適合性は、 16 | 言外に示されたものも 含め、全く存在しません。 17 | 詳しくはGNU 一般公衆利用許諾書をご覧ください。 18 | 19 | 20 | あなたはこのプログラムと共に、GNU 一般公衆利用許諾書のコピーを一部受け取っているはずです。もし受け取っていなければ、http://www.gnu.org/licenses/ をご覧ください。 21 | 22 | 23 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/edict2.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Func/edict2.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Func/edict2.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'typeDefs\&.h'\fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | 16 | .SS "Classes" 17 | 18 | .in +1c 19 | .ti -1c 20 | .RI "class \fBEdict2\fP" 21 | .br 22 | .ti -1c 23 | .RI "struct \fBEdict2::JaVerb\fP" 24 | .br 25 | .in -1c 26 | .SH "Author" 27 | .PP 28 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 29 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/funcframe.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/funcframe.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/funcframe.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include 'UiHelper/export\&.h'\fP 16 | .br 17 | 18 | .SS "Classes" 19 | 20 | .in +1c 21 | .ti -1c 22 | .RI "class \fBFuncFrame\fP" 23 | .br 24 | .in -1c 25 | .SH "Author" 26 | .PP 27 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 28 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['readdata',['readData',['../class_help_network_reply.html#aeb9fbdfbdf1bb47c49a30a54cabe134d',1,'HelpNetworkReply']]], 4 | ['refreshlanguage',['refreshLanguage',['../class_conj_frame.html#a54d19035527d1e0f556fdcbbad5a5abb',1,'ConjFrame::refreshLanguage()'],['../class_func_frame.html#ac6c816ef397c59a30448ca4fd51672f2',1,'FuncFrame::refreshLanguage()']]], 5 | ['resetcontent',['resetContent',['../class_export.html#a74088c65e5d8c0f887a4a5aaeac078d5',1,'Export']]], 6 | ['resetzoom',['resetZoom',['../class_help_viewer.html#ad4dd2c120b87884d06d6f4d53fdd785b',1,'HelpViewer']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/helpviewer.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/helpviewer.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/helpviewer.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'helpviewer\&.h'\fP 10 | .br 11 | 12 | .SS "Classes" 13 | 14 | .in +1c 15 | .ti -1c 16 | .RI "class \fBHelpNetworkReply\fP" 17 | .br 18 | .ti -1c 19 | .RI "class \fBHelpNetworkAccessManager\fP" 20 | .br 21 | .ti -1c 22 | .RI "class \fBHelpPage\fP" 23 | .br 24 | .in -1c 25 | .SH "Author" 26 | .PP 27 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 28 | -------------------------------------------------------------------------------- /libjpconj/lemmatization.cpp: -------------------------------------------------------------------------------- 1 | #include "lemmatization.h" 2 | 3 | Lemmatization::Lemmatization() 4 | { 5 | 6 | } 7 | 8 | 9 | QList Lemmatization::deConjugate(QString conjVerb) 10 | { 11 | QList result; 12 | 13 | result << getVerbInfo(conjVerb, _Present, _Affirmative, _Plain); 14 | return result; 15 | } 16 | 17 | 18 | VerbInfo Lemmatization::getVerbInfo(QString verb, CForm form, Polarity polarity, Politeness politeness) 19 | { 20 | VerbInfo info; 21 | info.verb = verb; 22 | info.form = form; 23 | info.polarity = polarity; 24 | info.politeness = politeness; 25 | return info; 26 | } 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/files_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jpconjhelp_2ecpp',['jpconjhelp.cpp',['../jpconjhelp_8cpp.html',1,'']]], 4 | ['jpconjhelp_2eh',['jpconjhelp.h',['../jpconjhelp_8h.html',1,'']]], 5 | ['jpconjmain_2ecpp',['jpconjmain.cpp',['../jpconjmain_8cpp.html',1,'']]], 6 | ['jpconjmain_2eh',['jpconjmain.h',['../jpconjmain_8h.html',1,'']]], 7 | ['jpconjtray_2ecpp',['jpconjtray.cpp',['../jpconjtray_8cpp.html',1,'']]], 8 | ['jpconjtray_2eh',['jpconjtray.h',['../jpconjtray_8h.html',1,'']]], 9 | ['jtrans_2ecpp',['jtrans.cpp',['../jtrans_8cpp.html',1,'']]], 10 | ['jtrans_2eh',['jtrans.h',['../jtrans_8h.html',1,'']]] 11 | ]; 12 | -------------------------------------------------------------------------------- /docs/latex.jpconj/jtrans_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jtrans_8h}{}\section{jpconj/\+Func/jtrans.h File Reference} 2 | \label{jtrans_8h}\index{jpconj/\+Func/jtrans.\+h@{jpconj/\+Func/jtrans.\+h}} 3 | {\ttfamily \#include $<$Q\+String$>$}\\* 4 | {\ttfamily \#include $<$Q\+Hash$>$}\\* 5 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 6 | {\ttfamily \#include $<$Q\+Reg\+Exp$>$}\\* 7 | \subsection*{Classes} 8 | \begin{DoxyCompactItemize} 9 | \item 10 | class \hyperlink{class_j_trans}{J\+Trans} 11 | \begin{DoxyCompactList}\small\item\em The \hyperlink{class_j_trans}{J\+Trans} class is used to romanize hiragana and katakana. \end{DoxyCompactList}\end{DoxyCompactItemize} 12 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/_home_kariminf_Github_Projects_japkatsuyou_jpconj_.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj Directory Reference" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj Directory Reference \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Directories" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "directory \fB3rdParty\fP" 14 | .br 15 | .ti -1c 16 | .RI "directory \fBFunc\fP" 17 | .br 18 | .ti -1c 19 | .RI "directory \fBUi\fP" 20 | .br 21 | .ti -1c 22 | .RI "directory \fBUiHelper\fP" 23 | .br 24 | .in -1c 25 | .SS "Files" 26 | 27 | .in +1c 28 | .ti -1c 29 | .RI "file \fBmain\&.cpp\fP" 30 | .br 31 | .in -1c 32 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/tatoeba.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Func/tatoeba.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Func/tatoeba.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | 18 | .SS "Classes" 19 | 20 | .in +1c 21 | .ti -1c 22 | .RI "class \fBTatoeba\fP" 23 | .br 24 | .ti -1c 25 | .RI "struct \fBTatoeba::Exp\fP" 26 | .br 27 | .in -1c 28 | .SH "Author" 29 | .PP 30 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 31 | -------------------------------------------------------------------------------- /docs/libjpconj/search/searchdata.js: -------------------------------------------------------------------------------- 1 | var indexSectionsWithContent = 2 | { 3 | 0: "_acdefijkloptuv", 4 | 1: "ijlv", 5 | 2: "ijltv", 6 | 3: "acdeiklotu", 7 | 4: "fpv", 8 | 5: "cekp", 9 | 6: "_", 10 | 7: "_l" 11 | }; 12 | 13 | var indexSectionNames = 14 | { 15 | 0: "all", 16 | 1: "classes", 17 | 2: "files", 18 | 3: "functions", 19 | 4: "variables", 20 | 5: "enums", 21 | 6: "enumvalues", 22 | 7: "defines" 23 | }; 24 | 25 | var indexSectionLabels = 26 | { 27 | 0: "All", 28 | 1: "Classes", 29 | 2: "Files", 30 | 3: "Functions", 31 | 4: "Variables", 32 | 5: "Enumerations", 33 | 6: "Enumerator", 34 | 7: "Macros" 35 | }; 36 | 37 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/jpconj_global.h.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/jpconj_global.h" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/jpconj_global.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | 12 | .SS "Macros" 13 | 14 | .in +1c 15 | .ti -1c 16 | .RI "#define \fBLIBJPCONJSHARED_EXPORT\fP Q_DECL_IMPORT" 17 | .br 18 | .in -1c 19 | .SH "Macro Definition Documentation" 20 | .PP 21 | .SS "#define LIBJPCONJSHARED_EXPORT Q_DECL_IMPORT" 22 | 23 | .SH "Author" 24 | .PP 25 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 26 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/jpconj_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jpconj_8h}{}\section{libjpconj/jpconj.h File Reference} 2 | \label{jpconj_8h}\index{libjpconj/jpconj.\+h@{libjpconj/jpconj.\+h}} 3 | {\ttfamily \#include \char`\"{}jpconj\+\_\+global.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}type\+Defs.\+h\char`\"{}}\\* 5 | {\ttfamily \#include \char`\"{}inflection.\+h\char`\"{}}\\* 6 | {\ttfamily \#include \char`\"{}lemmatization.\+h\char`\"{}}\\* 7 | {\ttfamily \#include $<$Q\+String$>$}\\* 8 | {\ttfamily \#include $<$Q\+List$>$}\\* 9 | \subsection*{Classes} 10 | \begin{DoxyCompactItemize} 11 | \item 12 | class \hyperlink{class_jp_conj}{Jp\+Conj} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['date',['date',['../class_styleinfo.html#a6b42ab079973bbbb98daf43d458f55cb',1,'Styleinfo']]], 4 | ['desc',['desc',['../class_styleinfo.html#a20d335e74f4b6eb61ff68ea6fd5d5097',1,'Styleinfo']]], 5 | ['desconnect',['desconnect',['../class_edict2.html#a0a051927cdec6d9108252d25c92394eb',1,'Edict2::desconnect()'],['../class_tatoeba.html#ac1cad1171858e2fd25b7318158d6afae',1,'Tatoeba::desconnect()']]], 6 | ['doconj',['doConj',['../class_conj_frame.html#a873131af43e9f81162a1881bf8ae9606',1,'ConjFrame']]], 7 | ['documenttitle',['documentTitle',['../class_help_viewer.html#a922412cfbbf882be461c86206fdce514',1,'HelpViewer']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/_home_kariminf_Github_Projects_japkatsuyou_jpconj_Func_.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Func Directory Reference" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Func Directory Reference \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Files" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "file \fBedict2\&.cpp\fP" 14 | .br 15 | .ti -1c 16 | .RI "file \fBedict2\&.h\fP" 17 | .br 18 | .ti -1c 19 | .RI "file \fBjtrans\&.cpp\fP" 20 | .br 21 | .ti -1c 22 | .RI "file \fBjtrans\&.h\fP" 23 | .br 24 | .ti -1c 25 | .RI "file \fBtatoeba\&.cpp\fP" 26 | .br 27 | .ti -1c 28 | .RI "file \fBtatoeba\&.h\fP" 29 | .br 30 | .in -1c 31 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/jtrans.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Func/jtrans.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Func/jtrans.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | 18 | .SS "Classes" 19 | 20 | .in +1c 21 | .ti -1c 22 | .RI "class \fBJTrans\fP" 23 | .br 24 | .RI "\fIThe \fBJTrans\fP class is used to romanize hiragana and katakana\&. \fP" 25 | .in -1c 26 | .SH "Author" 27 | .PP 28 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 29 | -------------------------------------------------------------------------------- /docs/latex.jpconj/qkicona_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{qkicona_8h}{}\section{jpconj/3rd\+Party/\+Q\+K\+Icona/qkicona.h File Reference} 2 | \label{qkicona_8h}\index{jpconj/3rd\+Party/\+Q\+K\+Icona/qkicona.\+h@{jpconj/3rd\+Party/\+Q\+K\+Icona/qkicona.\+h}} 3 | {\ttfamily \#include \char`\"{}qkicona\+\_\+global.\+h\char`\"{}}\\* 4 | {\ttfamily \#include $<$Q\+Icon$>$}\\* 5 | {\ttfamily \#include $<$Q\+Resource$>$}\\* 6 | {\ttfamily \#include $<$Q\+Action$>$}\\* 7 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 8 | {\ttfamily \#include $<$Q\+Map$>$}\\* 9 | \subsection*{Classes} 10 | \begin{DoxyCompactItemize} 11 | \item 12 | class \hyperlink{class_q_k_icona}{Q\+K\+Icona} 13 | \end{DoxyCompactItemize} 14 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/Tatoeba_Exp.3: -------------------------------------------------------------------------------- 1 | .TH "Tatoeba::Exp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | Tatoeba::Exp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | \fC#include \fP 11 | .SS "Public Attributes" 12 | 13 | .in +1c 14 | .ti -1c 15 | .RI "QString \fBjap\fP" 16 | .br 17 | .ti -1c 18 | .RI "QList< QString > \fBlang\fP" 19 | .br 20 | .in -1c 21 | .SH "Member Data Documentation" 22 | .PP 23 | .SS "QString Tatoeba::Exp::jap" 24 | 25 | .SS "QList Tatoeba::Exp::lang" 26 | 27 | 28 | .SH "Author" 29 | .PP 30 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 31 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/qkicona_global.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/3rdParty/QKIcona/qkicona_global.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/3rdParty/QKIcona/qkicona_global.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | 12 | .SS "Macros" 13 | 14 | .in +1c 15 | .ti -1c 16 | .RI "#define \fBQKICONASHARED_EXPORT\fP Q_DECL_IMPORT" 17 | .br 18 | .in -1c 19 | .SH "Macro Definition Documentation" 20 | .PP 21 | .SS "#define QKICONASHARED_EXPORT Q_DECL_IMPORT" 22 | 23 | .SH "Author" 24 | .PP 25 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 26 | -------------------------------------------------------------------------------- /docs/latex.libjpconj/annotated.tex: -------------------------------------------------------------------------------- 1 | \section{Class List} 2 | Here are the classes, structs, unions and interfaces with brief descriptions\+:\begin{DoxyCompactList} 3 | \item\contentsline{section}{\hyperlink{class_inflection}{Inflection} }{\pageref{class_inflection}}{} 4 | \item\contentsline{section}{\hyperlink{class_jp_conj}{Jp\+Conj} }{\pageref{class_jp_conj}}{} 5 | \item\contentsline{section}{\hyperlink{class_lemmatization}{Lemmatization} }{\pageref{class_lemmatization}}{} 6 | \item\contentsline{section}{\hyperlink{struct_verb_info}{Verb\+Info} }{\pageref{struct_verb_info}}{} 7 | \item\contentsline{section}{\hyperlink{class_verbstem}{Verbstem} }{\pageref{class_verbstem}}{} 8 | \end{DoxyCompactList} 9 | -------------------------------------------------------------------------------- /jpconj/Media/output/verbInfo: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
-------------------------------------------------------------------------------- /docs/jpconj/search/searchdata.js: -------------------------------------------------------------------------------- 1 | var indexSectionsWithContent = 2 | { 3 | 0: "abcdefghijklmnopqrstuwz~", 4 | 1: "acefhijlpqst", 5 | 2: "mu", 6 | 3: "acefhijlmpqst", 7 | 4: "abcdefghijlmnoprstwz~", 8 | 5: "adhjklnrst", 9 | 6: "p", 10 | 7: "nq" 11 | }; 12 | 13 | var indexSectionNames = 14 | { 15 | 0: "all", 16 | 1: "classes", 17 | 2: "namespaces", 18 | 3: "files", 19 | 4: "functions", 20 | 5: "variables", 21 | 6: "typedefs", 22 | 7: "defines" 23 | }; 24 | 25 | var indexSectionLabels = 26 | { 27 | 0: "All", 28 | 1: "Classes", 29 | 2: "Namespaces", 30 | 3: "Files", 31 | 4: "Functions", 32 | 5: "Variables", 33 | 6: "Typedefs", 34 | 7: "Macros" 35 | }; 36 | 37 | -------------------------------------------------------------------------------- /docs/latex.jpconj/dir_c606822aacd7c547b5863775591995e0.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_c606822aacd7c547b5863775591995e0}{}\section{jpconj/\+Func Directory Reference} 2 | \label{dir_c606822aacd7c547b5863775591995e0}\index{jpconj/\+Func Directory Reference@{jpconj/\+Func Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{edict2_8cpp}{edict2.\+cpp} 7 | \item 8 | file \hyperlink{edict2_8h}{edict2.\+h} 9 | \item 10 | file \hyperlink{jtrans_8cpp}{jtrans.\+cpp} 11 | \item 12 | file \hyperlink{jtrans_8h}{jtrans.\+h} 13 | \item 14 | file \hyperlink{tatoeba_8cpp}{tatoeba.\+cpp} 15 | \item 16 | file \hyperlink{tatoeba_8h}{tatoeba.\+h} 17 | \end{DoxyCompactItemize} 18 | -------------------------------------------------------------------------------- /docs/latex.jpconj/about_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{about_8h}{}\section{jpconj/\+Ui/about.h File Reference} 2 | \label{about_8h}\index{jpconj/\+Ui/about.\+h@{jpconj/\+Ui/about.\+h}} 3 | {\ttfamily \#include \char`\"{}Ui\+Helper/language.\+h\char`\"{}}\\* 4 | {\ttfamily \#include $<$Q\+Desktop\+Services$>$}\\* 5 | {\ttfamily \#include $<$Q\+Dialog$>$}\\* 6 | {\ttfamily \#include $<$Q\+Resource$>$}\\* 7 | {\ttfamily \#include $<$Q\+Url$>$}\\* 8 | \subsection*{Classes} 9 | \begin{DoxyCompactItemize} 10 | \item 11 | class \hyperlink{class_about}{About} 12 | \end{DoxyCompactItemize} 13 | \subsection*{Namespaces} 14 | \begin{DoxyCompactItemize} 15 | \item 16 | \hyperlink{namespace_ui}{Ui} 17 | \end{DoxyCompactItemize} 18 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/qkicona.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/3rdParty/QKIcona/qkicona.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/3rdParty/QKIcona/qkicona.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'qkicona_global\&.h'\fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | 22 | .SS "Classes" 23 | 24 | .in +1c 25 | .ti -1c 26 | .RI "class \fBQKIcona\fP" 27 | .br 28 | .in -1c 29 | .SH "Author" 30 | .PP 31 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 32 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/jpconj.h.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/jpconj.h" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/jpconj.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'jpconj_global\&.h'\fP 10 | .br 11 | \fC#include 'typeDefs\&.h'\fP 12 | .br 13 | \fC#include 'inflection\&.h'\fP 14 | .br 15 | \fC#include 'lemmatization\&.h'\fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | 22 | .SS "Classes" 23 | 24 | .in +1c 25 | .ti -1c 26 | .RI "class \fBJpConj\fP" 27 | .br 28 | .in -1c 29 | .SH "Author" 30 | .PP 31 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 32 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_11.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['readdata',['readData',['../class_help_network_reply.html#aeb9fbdfbdf1bb47c49a30a54cabe134d',1,'HelpNetworkReply']]], 4 | ['refreshlanguage',['refreshLanguage',['../class_conj_frame.html#a54d19035527d1e0f556fdcbbad5a5abb',1,'ConjFrame::refreshLanguage()'],['../class_func_frame.html#ac6c816ef397c59a30448ca4fd51672f2',1,'FuncFrame::refreshLanguage()']]], 5 | ['resetcontent',['resetContent',['../class_export.html#a74088c65e5d8c0f887a4a5aaeac078d5',1,'Export']]], 6 | ['resetzoom',['resetZoom',['../class_help_viewer.html#ad4dd2c120b87884d06d6f4d53fdd785b',1,'HelpViewer']]], 7 | ['rtl',['rtl',['../class_func_frame.html#a9afcf2865055116446b9f50406bb1c12',1,'FuncFrame']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /pack/windows/JapKatsuyou/license/ar.txt: -------------------------------------------------------------------------------- 1 | حقوق النشر 2013-2016 مجموعة عنقاء الفلك AnqaFalak 2 | 3 | حقوق النشر 2013 عبد الكريم عريس 4 | (kariminfo0@gmail.com) 5 | 6 | مرخص تحت GNU GPLv3 أو أي نسخة لاحقة. 7 | 8 | 9 | هذا البرنامج هو برنامج حر: يمكنك إعادة توزيعه و/أو تعديله 10 | تحت شروط رخصة غنو العمومية والتي نشرتها مؤسسة البرمجيات الحرة، 11 | سواء الإصدار 3 من الرخصة، أو أي إصدار لاحق. 12 | 13 | يوزع هذا البرنامج على أمل أن يكون مفيدا، 14 | ولكن من دون اي ضمانات؛ حتى دون ضمان 15 | صلاحية التسويق أو الملاءمة لغرض معين. 16 | راجع رخصة غنو العمومية لمزيد من التفاصيل. 17 | 18 | 19 | يجب أن تكون قد تلقيت نسخة من رخصة غنو العمومية مع هذا البرنامج. 20 | إن لم يكن كذلك، راجع http://www.gnu.org/licenses/ -------------------------------------------------------------------------------- /docs/man.jpconj/man3/about.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/about.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/about.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'UiHelper/language\&.h'\fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | 20 | .SS "Classes" 21 | 22 | .in +1c 23 | .ti -1c 24 | .RI "class \fBAbout\fP" 25 | .br 26 | .in -1c 27 | .SS "Namespaces" 28 | 29 | .in +1c 30 | .ti -1c 31 | .RI " \fBUi\fP" 32 | .br 33 | .in -1c 34 | .SH "Author" 35 | .PP 36 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 37 | -------------------------------------------------------------------------------- /jpconj/Media/about.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | about/authors_ar 4 | about/authors_en 5 | about/authors_fr 6 | about/authors_ja 7 | about/license_ar 8 | about/license_en 9 | about/license_fr 10 | about/license_ja 11 | about/about_ar 12 | about/about_en 13 | about/about_fr 14 | about/about_ja 15 | about/legal_ar 16 | about/legal_en 17 | about/legal_fr 18 | about/legal_ja 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/latex.jpconj/namespace_msg.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{namespace_msg}{}\section{Msg Namespace Reference} 2 | \label{namespace_msg}\index{Msg@{Msg}} 3 | 4 | 5 | \subsection{Detailed Description} 6 | \hyperlink{namespace_msg}{Msg} namespace (abbr. Messages) is used to store all strings used to internationalize the application. It contains also, some lists which help speeding things up. 7 | 8 | In all functions we used N\+O\+\_\+\+U\+S\+E\+\_\+\+F\+U\+NC to stop \char`\"{}function-\/not-\/used\char`\"{} warnings in case of G\+CC compiler. This is its definition\+: ~\newline 9 | \#ifdef ~\newline 10 | \#define N\+O\+\_\+\+U\+S\+E\+\_\+\+F\+U\+NC ((unused)) ~\newline 11 | \#else ~\newline 12 | \#define N\+O\+\_\+\+U\+S\+E\+\_\+\+F\+U\+NC ~\newline 13 | \#endif ~\newline 14 | -------------------------------------------------------------------------------- /jpconj/Media/DB/README.md: -------------------------------------------------------------------------------- 1 | =============== 2 | **DataBases** 3 | =============== 4 | There are two databases: 5 | * edict2verbs.db: contains Japanese verbs 6 | * tatoeba.db: contains examples from [tatoeba.org](http://tatoeba.org/eng/). 7 | ----------- 8 | edict2verbs 9 | ----------- 10 | To generate this database, please refer to the project [KInfoMiner](https://github.com/kariminf/KInfoMiner). It is written using Java. 11 | The class used to generate it is: 12 | KInfoMiner/test/kariminf/kinfominer/edict2/VerbExtract.java 13 | 14 | To get edict2 dictionary, please follow this link http://www.edrdg.org/jmdict/edict.html 15 | 16 | ----------- 17 | tatoeba.db 18 | ----------- 19 | To generate it, we used some python scripts: [See scripts here](../../../scripts/tatoeba/). 20 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['find',['find',['../class_edict2.html#abc792160e9770e32a682b661a16493ba',1,'Edict2::find()'],['../class_tatoeba.html#a2128196d109866667d0fd44c82ee12a6',1,'Tatoeba::find()']]], 4 | ['fontchanged',['fontChanged',['../class_style.html#a2824b7c9634f202278b9e0f593207628',1,'Style']]], 5 | ['forwardavailable',['forwardAvailable',['../class_help_viewer.html#a147b483dd2a752325e3a9776f0988345',1,'HelpViewer']]], 6 | ['funcframe',['FuncFrame',['../class_func_frame.html',1,'FuncFrame'],['../class_func_frame.html#acca8a9c9f954e66a1ea9cd75f1272cfe',1,'FuncFrame::FuncFrame()']]], 7 | ['funcframe_2ecpp',['funcframe.cpp',['../funcframe_8cpp.html',1,'']]], 8 | ['funcframe_2eh',['funcframe.h',['../funcframe_8h.html',1,'']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['edict2',['Edict2',['../class_edict2.html#a8dec1c26f4eb12381dd49419deaa6d7d',1,'Edict2']]], 4 | ['emitsignal',['emitSignal',['../class_style.html#aee0ec6a67f69a904c9bea96c83182769',1,'Style']]], 5 | ['exists',['exists',['../classjpconjhelp.html#a1308a27ae2c993f6ac4345e422f418fa',1,'jpconjhelp']]], 6 | ['export',['Export',['../class_export.html#a2510acbdbeaba62ddfac446b0ec304c9',1,'Export']]], 7 | ['exporthtml',['exportHtml',['../class_export.html#aa41d602fde29fd8a3019136df4f5e862',1,'Export']]], 8 | ['exportodf',['exportOdf',['../class_export.html#a289dc4f2dbbcb8669389f21aa230daeb',1,'Export']]], 9 | ['exportpdf',['exportPdf',['../class_export.html#a8e445716ec53dd24ccb8702f79c28be2',1,'Export']]] 10 | ]; 11 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/Edict2_JaVerb.3: -------------------------------------------------------------------------------- 1 | .TH "Edict2::JaVerb" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | Edict2::JaVerb \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | \fC#include \fP 11 | .SS "Public Attributes" 12 | 13 | .in +1c 14 | .ti -1c 15 | .RI "QString \fBkanji\fP" 16 | .br 17 | .ti -1c 18 | .RI "QString \fBhiragana\fP" 19 | .br 20 | .ti -1c 21 | .RI "EdictType \fBtype\fP" 22 | .br 23 | .in -1c 24 | .SH "Member Data Documentation" 25 | .PP 26 | .SS "QString Edict2::JaVerb::hiragana" 27 | 28 | .SS "QString Edict2::JaVerb::kanji" 29 | 30 | .SS "EdictType Edict2::JaVerb::type" 31 | 32 | 33 | .SH "Author" 34 | .PP 35 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 36 | -------------------------------------------------------------------------------- /docs/jpconj/search/classes_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['qdialog',['QDialog',['../class_q_dialog.html',1,'']]], 4 | ['qframe',['QFrame',['../class_q_frame.html',1,'']]], 5 | ['qkicona',['QKIcona',['../class_q_k_icona.html',1,'']]], 6 | ['qmainwindow',['QMainWindow',['../class_q_main_window.html',1,'']]], 7 | ['qnetworkaccessmanager',['QNetworkAccessManager',['../class_q_network_access_manager.html',1,'']]], 8 | ['qnetworkreply',['QNetworkReply',['../class_q_network_reply.html',1,'']]], 9 | ['qobject',['QObject',['../class_q_object.html',1,'']]], 10 | ['qsystemtrayicon',['QSystemTrayIcon',['../class_q_system_tray_icon.html',1,'']]], 11 | ['qwebpage',['QWebPage',['../class_q_web_page.html',1,'']]], 12 | ['qwebview',['QWebView',['../class_q_web_view.html',1,'']]] 13 | ]; 14 | -------------------------------------------------------------------------------- /docs/latex.jpconj/jpconjtray_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jpconjtray_8h}{}\section{jpconj/\+Ui\+Helper/jpconjtray.h File Reference} 2 | \label{jpconjtray_8h}\index{jpconj/\+Ui\+Helper/jpconjtray.\+h@{jpconj/\+Ui\+Helper/jpconjtray.\+h}} 3 | {\ttfamily \#include $<$Q\+Application$>$}\\* 4 | {\ttfamily \#include $<$Q\+Icon$>$}\\* 5 | {\ttfamily \#include $<$Q\+Input\+Context$>$}\\* 6 | {\ttfamily \#include $<$Q\+Object$>$}\\* 7 | {\ttfamily \#include $<$Q\+Point$>$}\\* 8 | {\ttfamily \#include $<$Q\+Menu$>$}\\* 9 | {\ttfamily \#include $<$Q\+Main\+Window$>$}\\* 10 | {\ttfamily \#include $<$Q\+Settings$>$}\\* 11 | {\ttfamily \#include $<$Q\+System\+Tray\+Icon$>$}\\* 12 | \subsection*{Classes} 13 | \begin{DoxyCompactItemize} 14 | \item 15 | class \hyperlink{class_jpconj_tray}{Jpconj\+Tray} 16 | \end{DoxyCompactItemize} 17 | -------------------------------------------------------------------------------- /docs/latex.jpconj/style_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{style_8h}{}\section{jpconj/\+Ui\+Helper/style.h File Reference} 2 | \label{style_8h}\index{jpconj/\+Ui\+Helper/style.\+h@{jpconj/\+Ui\+Helper/style.\+h}} 3 | {\ttfamily \#include $<$Q\+Custom\+Event$>$}\\* 4 | {\ttfamily \#include $<$Q\+Application$>$}\\* 5 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 6 | {\ttfamily \#include $<$Q\+Dir$>$}\\* 7 | {\ttfamily \#include $<$Q\+Hash$>$}\\* 8 | {\ttfamily \#include $<$Q\+Object$>$}\\* 9 | {\ttfamily \#include $<$Q\+Settings$>$}\\* 10 | {\ttfamily \#include $<$Q\+String$>$}\\* 11 | {\ttfamily \#include $<$Q\+String\+List$>$}\\* 12 | \subsection*{Classes} 13 | \begin{DoxyCompactItemize} 14 | \item 15 | class \hyperlink{class_styleinfo}{Styleinfo} 16 | \item 17 | class \hyperlink{class_style}{Style} 18 | \end{DoxyCompactItemize} 19 | -------------------------------------------------------------------------------- /docs/latex.jpconj/dir_fef140197a1168b7bcd55ff6c5cbd94f.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_fef140197a1168b7bcd55ff6c5cbd94f}{}\section{jpconj Directory Reference} 2 | \label{dir_fef140197a1168b7bcd55ff6c5cbd94f}\index{jpconj Directory Reference@{jpconj Directory Reference}} 3 | \subsection*{Directories} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | directory \hyperlink{dir_cb8729665185ea129da29a441c98ff02}{3rd\+Party} 7 | \item 8 | directory \hyperlink{dir_c606822aacd7c547b5863775591995e0}{Func} 9 | \item 10 | directory \hyperlink{dir_bf52adbaa2a843b5ec6519afae08e90d}{Ui} 11 | \item 12 | directory \hyperlink{dir_39b1cb06a8863f7ce54780a12819f128}{Ui\+Helper} 13 | \end{DoxyCompactItemize} 14 | \subsection*{Files} 15 | \begin{DoxyCompactItemize} 16 | \item 17 | file \hyperlink{main_8cpp}{main.\+cpp} 18 | \end{DoxyCompactItemize} 19 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/Msg.3: -------------------------------------------------------------------------------- 1 | .TH "Msg" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | Msg \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SH "Detailed Description" 10 | .PP 11 | \fBMsg\fP namespace (abbr\&. Messages) is used to store all strings used to internationalize the application\&. It contains also, some lists which help speeding things up\&. 12 | .PP 13 | In all functions we used NO_USE_FUNC to stop 'function-not-used' warnings in case of GCC compiler\&. This is its definition: 14 | .br 15 | #ifdef 16 | .br 17 | #define NO_USE_FUNC ((unused)) 18 | .br 19 | #else 20 | .br 21 | #define NO_USE_FUNC 22 | .br 23 | #endif 24 | .br 25 | 26 | .SH "Author" 27 | .PP 28 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 29 | -------------------------------------------------------------------------------- /docs/latex.jpconj/export_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{export_8h}{}\section{jpconj/\+Ui\+Helper/export.h File Reference} 2 | \label{export_8h}\index{jpconj/\+Ui\+Helper/export.\+h@{jpconj/\+Ui\+Helper/export.\+h}} 3 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 4 | {\ttfamily \#include $<$Q\+Dir$>$}\\* 5 | {\ttfamily \#include $<$Q\+File$>$}\\* 6 | {\ttfamily \#include $<$Q\+File\+Info$>$}\\* 7 | {\ttfamily \#include $<$Q\+Printer$>$}\\* 8 | {\ttfamily \#include $<$Q\+Settings$>$}\\* 9 | {\ttfamily \#include $<$Q\+Text\+Stream$>$}\\* 10 | {\ttfamily \#include $<$Q\+Text\+Document$>$}\\* 11 | {\ttfamily \#include $<$Q\+Text\+Document\+Writer$>$}\\* 12 | {\ttfamily \#include $<$Q\+Web\+View$>$}\\* 13 | \subsection*{Classes} 14 | \begin{DoxyCompactItemize} 15 | \item 16 | class \hyperlink{class_export}{Export} 17 | \end{DoxyCompactItemize} 18 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/msg.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/msg.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/msg.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'typeDefs\&.h'\fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | 20 | .SS "Namespaces" 21 | 22 | .in +1c 23 | .ti -1c 24 | .RI " \fBMsg\fP" 25 | .br 26 | .in -1c 27 | .SS "Macros" 28 | 29 | .in +1c 30 | .ti -1c 31 | .RI "#define \fBNO_USE_FUNC\fP" 32 | .br 33 | .in -1c 34 | .SH "Macro Definition Documentation" 35 | .PP 36 | .SS "#define NO_USE_FUNC" 37 | 38 | .SH "Author" 39 | .PP 40 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 41 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/jpconjtray.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/jpconjtray.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/jpconjtray.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | \fC#include \fP 22 | .br 23 | \fC#include \fP 24 | .br 25 | \fC#include \fP 26 | .br 27 | 28 | .SS "Classes" 29 | 30 | .in +1c 31 | .ti -1c 32 | .RI "class \fBJpconjTray\fP" 33 | .br 34 | .in -1c 35 | .SH "Author" 36 | .PP 37 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 38 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_17.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['_7eabout',['~About',['../class_about.html#ace60197b1b610998908036ee1f802204',1,'About']]], 4 | ['_7econjframe',['~ConjFrame',['../class_conj_frame.html#aa416dd801ddd8c36bb160840ecae050f',1,'ConjFrame']]], 5 | ['_7eedict2',['~Edict2',['../class_edict2.html#ad6121ad9ebcb2836b8289d66a4842372',1,'Edict2']]], 6 | ['_7ejpconjhelp',['~jpconjhelp',['../classjpconjhelp.html#afc8665a488b5df911a40d4f0a97f9c10',1,'jpconjhelp']]], 7 | ['_7ejpconjmain',['~jpconjmain',['../classjpconjmain.html#aaa28df088250723ce786eec06acab032',1,'jpconjmain']]], 8 | ['_7ejpconjtray',['~JpconjTray',['../class_jpconj_tray.html#a0b6b76f13ed64254b48af35e7103340b',1,'JpconjTray']]], 9 | ['_7epreference',['~Preference',['../class_preference.html#ab7dc94871591bfcff6849c26b7638bba',1,'Preference']]] 10 | ]; 11 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/jpconj.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj/jpconj.cpp" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj/jpconj.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'jpconj\&.h'\fP 10 | .br 11 | 12 | .SS "Functions" 13 | 14 | .in +1c 15 | .ti -1c 16 | .RI "QList< \fBVerbInfo\fP > \fBdeConjugate\fP (QString conjVerb)" 17 | .br 18 | .RI "\fIdeConjugate \fP" 19 | .in -1c 20 | .SH "Function Documentation" 21 | .PP 22 | .SS "QList<\fBVerbInfo\fP> deConjugate (QString conjVerb)" 23 | 24 | .PP 25 | deConjugate 26 | .PP 27 | \fBParameters:\fP 28 | .RS 4 29 | \fIconjVerb\fP 30 | .RE 31 | .PP 32 | \fBReturns:\fP 33 | .RS 4 34 | .RE 35 | .PP 36 | 37 | .SH "Author" 38 | .PP 39 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 40 | -------------------------------------------------------------------------------- /docs/jpconj/search/functions_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['_7eabout',['~About',['../class_about.html#ace60197b1b610998908036ee1f802204',1,'About']]], 4 | ['_7econjframe',['~ConjFrame',['../class_conj_frame.html#aa416dd801ddd8c36bb160840ecae050f',1,'ConjFrame']]], 5 | ['_7eedict2',['~Edict2',['../class_edict2.html#ad6121ad9ebcb2836b8289d66a4842372',1,'Edict2']]], 6 | ['_7ejpconjhelp',['~jpconjhelp',['../classjpconjhelp.html#afc8665a488b5df911a40d4f0a97f9c10',1,'jpconjhelp']]], 7 | ['_7ejpconjmain',['~jpconjmain',['../classjpconjmain.html#aaa28df088250723ce786eec06acab032',1,'jpconjmain']]], 8 | ['_7ejpconjtray',['~JpconjTray',['../class_jpconj_tray.html#a0b6b76f13ed64254b48af35e7103340b',1,'JpconjTray']]], 9 | ['_7epreference',['~Preference',['../class_preference.html#ab7dc94871591bfcff6849c26b7638bba',1,'Preference']]] 10 | ]; 11 | -------------------------------------------------------------------------------- /Authors.rst: -------------------------------------------------------------------------------- 1 | JapKatsuyou a Japanese verbs conjugator. 2 | 3 | Here you can find the list of Authors & maintainers. We appreciate your contribution in this project. 4 | 5 | ============ 6 | Contributors 7 | ============ 8 | 9 | 10 | Coding 11 | ------ 12 | 13 | * `Abdelkrime Aries `_ 14 | 15 | Documentation 16 | ------------- 17 | 18 | * README file : `Zakaria Smahi `_ 19 | * Authors file: Zakaria Smahi 20 | * FAQ file: Zakaria Smahi 21 | 22 | Design 23 | ------ 24 | * Icons: Abdelkrime Aries (using Gimp). The icons are under CC-BY-SA-3 license. 25 | 26 | Packaging 27 | --------- 28 | * Windows NSIS installer: Abdelkrime Aries 29 | * Ubuntu DEB package: Abdelkrime Aries 30 | * 31 | 32 | Testing 33 | ------- 34 | 35 | * Test : Abdelkrime Aries , Zakaria Smahi 36 | * Bugs : Abdelkrime Aries 37 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/export.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/export.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/export.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | \fC#include \fP 22 | .br 23 | \fC#include \fP 24 | .br 25 | \fC#include \fP 26 | .br 27 | \fC#include \fP 28 | .br 29 | 30 | .SS "Classes" 31 | 32 | .in +1c 33 | .ti -1c 34 | .RI "class \fBExport\fP" 35 | .br 36 | .in -1c 37 | .SH "Author" 38 | .PP 39 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 40 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/style.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/style.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/style.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | \fC#include \fP 22 | .br 23 | \fC#include \fP 24 | .br 25 | \fC#include \fP 26 | .br 27 | 28 | .SS "Classes" 29 | 30 | .in +1c 31 | .ti -1c 32 | .RI "class \fBStyleinfo\fP" 33 | .br 34 | .ti -1c 35 | .RI "class \fBStyle\fP" 36 | .br 37 | .in -1c 38 | .SH "Author" 39 | .PP 40 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 41 | -------------------------------------------------------------------------------- /jpconj/Media/jpconj.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Type=Application 4 | Name=JapKatsuyou 5 | GenericName=Japanese verb conjugation 6 | Comment=A free Japanese verb conjugation application 7 | Exec=jpconj 8 | Icon=/usr/share/jpconj/icon.png 9 | Terminal=false 10 | Categories=Languages;Education;Qt; 11 | 12 | 13 | # Translations 14 | Name[ar]=JapKatsuyou 15 | GenericName[ar]=تصريف الأفعال اليابانية 16 | Comment[ar]=تطبيق مجاني لتصريف الأفعال اليابانية 17 | Icon[ar]=/usr/share/jpconj/img/icon.png 18 | 19 | Name[ja]=JapKatsuyou 20 | GenericName[ja]=日本語の動詞活用 21 | Comment[ja]=日本語の動詞活用するために無料のアプリケーション 22 | Icon[ja]=/usr/share/jpconj/img/icon.png 23 | 24 | Name[fr]=JapKatsuyou 25 | GenericName[fr]=Conjugaison des verbs Japonais 26 | Comment[fr]=Une application gratruite pour la Conjugaison des verbs Japonais 27 | Icon[fr]=/usr/share/jpconj/img/icon.png -------------------------------------------------------------------------------- /docs/man.jpconj/man3/preference.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/preference.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/preference.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'UiHelper/export\&.h'\fP 10 | .br 11 | \fC#include 'UiHelper/language\&.h'\fP 12 | .br 13 | \fC#include 'UiHelper/style\&.h'\fP 14 | .br 15 | \fC#include 'UiHelper/icona\&.h'\fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | \fC#include \fP 22 | .br 23 | 24 | .SS "Classes" 25 | 26 | .in +1c 27 | .ti -1c 28 | .RI "class \fBPreference\fP" 29 | .br 30 | .in -1c 31 | .SS "Namespaces" 32 | 33 | .in +1c 34 | .ti -1c 35 | .RI " \fBUi\fP" 36 | .br 37 | .in -1c 38 | .SH "Author" 39 | .PP 40 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 41 | -------------------------------------------------------------------------------- /jpconj/Media/about/license_ja: -------------------------------------------------------------------------------- 1 | 2 |

3 | Copyright 2013-2016 AnqaFalakのグループ 4 |

5 |

6 | Copyright 2013 Abdelkrime Aries 7 | (kariminfo0@gmail.com) 8 |

9 | 10 |

11 | GNU GPLv3 12 | の下で、または後のバージョンの下でライセンスされています。 13 |

14 | 15 |
16 |

17 | このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって発行されたGNU 一般公衆利用許諾書(バージョン3か、 それ以降のバージョンのうちどれか)が定める条件の下で再頒布または改変することができます。 18 |

19 |

20 | このプログラムは有用であることを願って頒布されますが、*全くの無保証 *です。商業可能性の保証や特定目的への適合性は、言外に示されたものも 含め、全く存在しません。詳しくはGNU 一般公衆利用許諾書をご覧ください。 21 |

22 |

23 | あなたはこのプログラムと共に、GNU 一般公衆利用許諾書のコピーを一部受け取っているはずです。もし受け取っていなければ、http://www.gnu.org/licenses/ をご覧ください。 24 |

25 |
26 | -------------------------------------------------------------------------------- /jpconj/UiHelper/icona.h: -------------------------------------------------------------------------------- 1 | #ifndef ICONA_H 2 | #define ICONA_H 3 | 4 | #include "qkicona.h" 5 | 6 | #include 7 | #include 8 | 9 | 10 | class Icona : public QObject 11 | { 12 | Q_OBJECT 13 | 14 | public: 15 | Icona(); 16 | void signalIconsChanged(); 17 | 18 | static void setIcons(); 19 | static QString getConfigIcons(); 20 | static QString getCurrentIcons(); 21 | static void setConfigIcons(QString style); 22 | 23 | static QMap getAvailableIcons(); 24 | 25 | static void addReceiver(const QObject * receiver, const char * receiverSlot); 26 | 27 | static QIcon getIcon(QString iconName); 28 | 29 | private: 30 | static QKIcona * iconHelper; 31 | static Icona * _instance; 32 | static QString currentIcons; 33 | 34 | signals: 35 | void iconsChanged(); 36 | }; 37 | 38 | #endif // ICONA_H 39 | -------------------------------------------------------------------------------- /jpconj/Media/styles/Goldy.css: -------------------------------------------------------------------------------- 1 | /* 2 | @Author: Abdelkrime Aries 3 | */ 4 | 5 | table.show { 6 | border: 0px; 7 | width: 100%; 8 | } 9 | 10 | .head, .head_even, .head_odd, .head_row1, .head_row3, .head_row2, .head_row4 { 11 | font-weight: bold; 12 | text-align:center; 13 | margin: 5%; 14 | height: 1.5em; 15 | background: -webkit-linear-gradient(top, #d0a014 0%, #aaaaaa 30%, #ffffff 44%,#d0a014 100%); 16 | } 17 | 18 | .title_even, .title_odd { 19 | font-weight: bold; 20 | text-align:center; 21 | margin: 5%; 22 | height: 1.5em; 23 | background: -webkit-linear-gradient(top, #d0a014 0%, #ffffff 44%, #aaaaaa 70%, #d0a014 100%); 24 | } 25 | 26 | .row1, .row3, .row2, .row4 { 27 | margin: 5%; 28 | height: 1.5em; 29 | direction: ltr; 30 | text-align:left; 31 | background: -webkit-linear-gradient(top, #d0a014 0%,#ffffff 44%,#d0a014 100%); 32 | 33 | } -------------------------------------------------------------------------------- /docs/man.jpconj/man3/QKIcona.3: -------------------------------------------------------------------------------- 1 | .TH "QKIcona" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | QKIcona \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | \fC#include \fP 11 | .SS "Public Member Functions" 12 | 13 | .in +1c 14 | .ti -1c 15 | .RI "QMap< QString, QIcon > \fBavailableStyles\fP ()" 16 | .br 17 | .ti -1c 18 | .RI "QString \fBgetDefaultStyle\fP ()" 19 | .br 20 | .ti -1c 21 | .RI "QIcon \fBgetIcon\fP (QString styleName, QString name)" 22 | .br 23 | .in -1c 24 | .SH "Member Function Documentation" 25 | .PP 26 | .SS "QMap QKIcona::availableStyles ()" 27 | 28 | .SS "QString QKIcona::getDefaultStyle ()" 29 | 30 | .SS "QIcon QKIcona::getIcon (QString styleName, QString name)" 31 | 32 | 33 | .SH "Author" 34 | .PP 35 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 36 | -------------------------------------------------------------------------------- /pack/windows/JapKatsuyou/license/en.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013-2016 AnqaFalak group 2 | 3 | Copyright 2013 Abdelkrime Aries 4 | (kariminfo0@gmail.com) 5 | 6 | Licensed under GNU GPLv3 or later 7 | 8 | 9 | This program is free software: you can redistribute it and/or modify 10 | it under the terms of the GNU General Public License as published by 11 | the Free Software Foundation, either version 3 of the License, or 12 | any later version. 13 | 14 | This program is distributed in the hope that it will be useful, 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | GNU General Public License for more details. 18 | 19 | 20 | You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/ 21 | -------------------------------------------------------------------------------- /docs/latex.jpconj/preference_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{preference_8h}{}\section{jpconj/\+Ui/preference.h File Reference} 2 | \label{preference_8h}\index{jpconj/\+Ui/preference.\+h@{jpconj/\+Ui/preference.\+h}} 3 | {\ttfamily \#include \char`\"{}Ui\+Helper/export.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}Ui\+Helper/language.\+h\char`\"{}}\\* 5 | {\ttfamily \#include \char`\"{}Ui\+Helper/style.\+h\char`\"{}}\\* 6 | {\ttfamily \#include \char`\"{}Ui\+Helper/icona.\+h\char`\"{}}\\* 7 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 8 | {\ttfamily \#include $<$Q\+Dialog$>$}\\* 9 | {\ttfamily \#include $<$Q\+Map$>$}\\* 10 | \subsection*{Classes} 11 | \begin{DoxyCompactItemize} 12 | \item 13 | class \hyperlink{class_preference}{Preference} 14 | \end{DoxyCompactItemize} 15 | \subsection*{Namespaces} 16 | \begin{DoxyCompactItemize} 17 | \item 18 | \hyperlink{namespace_ui}{Ui} 19 | \end{DoxyCompactItemize} 20 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/VerbInfo.3: -------------------------------------------------------------------------------- 1 | .TH "VerbInfo" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | VerbInfo \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | \fC#include \fP 11 | .SS "Public Attributes" 12 | 13 | .in +1c 14 | .ti -1c 15 | .RI "QString \fBverb\fP" 16 | .br 17 | .ti -1c 18 | .RI "\fBCForm\fP \fBform\fP" 19 | .br 20 | .ti -1c 21 | .RI "\fBPolarity\fP \fBpolarity\fP" 22 | .br 23 | .ti -1c 24 | .RI "\fBPoliteness\fP \fBpoliteness\fP" 25 | .br 26 | .in -1c 27 | .SH "Member Data Documentation" 28 | .PP 29 | .SS "\fBCForm\fP VerbInfo::form" 30 | 31 | .SS "\fBPolarity\fP VerbInfo::polarity" 32 | 33 | .SS "\fBPoliteness\fP VerbInfo::politeness" 34 | 35 | .SS "QString VerbInfo::verb" 36 | 37 | 38 | .SH "Author" 39 | .PP 40 | Generated automatically by Doxygen for JapKatsuyou\&.libJpConj from the source code\&. 41 | -------------------------------------------------------------------------------- /docs/man.libjpconj/man3/_home_kariminf_Github_Projects_japkatsuyou_libjpconj_.3: -------------------------------------------------------------------------------- 1 | .TH "libjpconj Directory Reference" 3 "Tue Aug 29 2017" "Version 1.0" "JapKatsuyou.libJpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | libjpconj Directory Reference \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Files" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "file \fBinflection\&.cpp\fP" 14 | .br 15 | .ti -1c 16 | .RI "file \fBinflection\&.h\fP" 17 | .br 18 | .ti -1c 19 | .RI "file \fBjpconj\&.cpp\fP" 20 | .br 21 | .ti -1c 22 | .RI "file \fBjpconj\&.h\fP" 23 | .br 24 | .ti -1c 25 | .RI "file \fBjpconj_global\&.h\fP" 26 | .br 27 | .ti -1c 28 | .RI "file \fBlemmatization\&.cpp\fP" 29 | .br 30 | .ti -1c 31 | .RI "file \fBlemmatization\&.h\fP" 32 | .br 33 | .ti -1c 34 | .RI "file \fBtypeDefs\&.h\fP" 35 | .br 36 | .ti -1c 37 | .RI "file \fBverbstem\&.cpp\fP" 38 | .br 39 | .ti -1c 40 | .RI "file \fBverbstem\&.h\fP" 41 | .br 42 | .in -1c 43 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | # json-VCard Changelog 3 | 4 | This is the changelog syntax: 5 | * NEW: For any new module or file (creation) 6 | * ADD: For any functions added inside a module (addition) 7 | * IMPROVE: For any improvements to existing materials. 8 | This affects the behavior, but doesn't break any precedent 9 | * MODIFY: Modification of function names, files names and directories. 10 | This will break the projects developed on precedent versions. 11 | * FIX: Fixing bugs 12 | * DEL: Delete or deprecate some functions 13 | 14 | ## Version 2.0.0 (2016-07-03) 15 | 16 | * ADD: Control the font (size and type) for both default language and Japanese 17 | * NEW: Choose the icons set 18 | * NEW: Show examples in default language 19 | * ADD: Show Furigana and Romaji pronunciation of the verb 20 | 21 | ## Version 1.0.1 (2014-01-01) 22 | 23 | * I don't know what changed :) 24 | 25 | ## Version 0.2.0 (2013-09-04) 26 | 27 | * NEW: first release 28 | -------------------------------------------------------------------------------- /pack/windows/JapKatsuyou/license/fr.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013-2016 groupe AnqaFalak 2 | 3 | Droits d'auteur 2013 Abdelkrime Aries 4 | (kariminfo0@gmail.com) 5 | 6 | Sous la licence GNU GPLv3 ou versions ultérieures. 7 | 8 | 9 | Ce programme est un logiciel libre: vous pouvez le redistribuer et/ou 10 | le modifier selon les termes de la Licence Publique Générale GNU, telle 11 | que publiée par la Free Software Foundation, soit la version 3 de la 12 | Licence, ou toute version ultérieure. 13 | 14 | Ce programme est distribué dans l'espoir qu'il sera utile, 15 | mais SANS AUCUNE GARANTIE, sans même la garantie implicite de 16 | COMMERCIALISATION ou D'ADAPTATION À UN USAGE PARTICULIER. 17 | Voir la Licence Publique Générale GNU pour plus de détails. 18 | 19 | 20 | Vous devriez avoir reçu une copie de la Licence Publique Générale GNU avec ce programme. Sinon, voir http://www.gnu.org/licenses/ -------------------------------------------------------------------------------- /docs/man.jpconj/man3/main.cpp.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/main.cpp" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/main.cpp \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'Ui/jpconjmain\&.h'\fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | 14 | .SS "Functions" 15 | 16 | .in +1c 17 | .ti -1c 18 | .RI "int \fBmain\fP (int argc, char *argv[])" 19 | .br 20 | .RI "\fImain The main function which the application start with\&. \fP" 21 | .in -1c 22 | .SH "Function Documentation" 23 | .PP 24 | .SS "int main (int argc, char * argv[])" 25 | 26 | .PP 27 | main The main function which the application start with\&. 28 | .PP 29 | \fBParameters:\fP 30 | .RS 4 31 | \fIargc\fP 32 | .br 33 | \fIargv\fP 34 | .RE 35 | .PP 36 | \fBReturns:\fP 37 | .RS 4 38 | .RE 39 | .PP 40 | 41 | .SH "Author" 42 | .PP 43 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 44 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/conjframe.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/conjframe.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/conjframe.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'UiHelper/export\&.h'\fP 10 | .br 11 | \fC#include 'Func/edict2\&.h'\fP 12 | .br 13 | \fC#include 'UiHelper/msg\&.h'\fP 14 | .br 15 | \fC#include 'UiHelper/funcframe\&.h'\fP 16 | .br 17 | \fC#include 'Ui/preference\&.h'\fP 18 | .br 19 | \fC#include 'Func/jtrans\&.h'\fP 20 | .br 21 | \fC#include 'jpconj\&.h'\fP 22 | .br 23 | \fC#include \fP 24 | .br 25 | \fC#include \fP 26 | .br 27 | 28 | .SS "Classes" 29 | 30 | .in +1c 31 | .ti -1c 32 | .RI "class \fBConjFrame\fP" 33 | .br 34 | .in -1c 35 | .SS "Namespaces" 36 | 37 | .in +1c 38 | .ti -1c 39 | .RI " \fBUi\fP" 40 | .br 41 | .in -1c 42 | .SH "Author" 43 | .PP 44 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 45 | -------------------------------------------------------------------------------- /jpconj/Media/styles/FColors.css: -------------------------------------------------------------------------------- 1 | /* 2 | @Author: Abdelkrime Aries 3 | */ 4 | 5 | table.show { 6 | border: 0px; 7 | width: 100%; 8 | } 9 | 10 | .head, .head_even, .head_odd, .head_row1, .head_row2, .head_row3, .head_row4 { 11 | text-align:center; 12 | font-weight: bold; 13 | margin: 5%; 14 | height: 1.5em; 15 | background: #4c66a4; /* Old browsers */ 16 | } 17 | 18 | .col_even { 19 | margin: 5%; 20 | height: 1.5em; 21 | direction: ltr; 22 | text-align:left; 23 | background: #ffffff; /* Old browsers */ 24 | 25 | } 26 | 27 | .col_odd { 28 | margin: 5%; 29 | height: 1.5em; 30 | direction: ltr; 31 | text-align:left; 32 | background: #d8dfea; /* Old browsers */ 33 | 34 | } 35 | 36 | .title_even { 37 | font-weight: bold; 38 | margin: 5%; 39 | height: 1.5em; 40 | background: #ffffff; /* Old browsers */ 41 | } 42 | 43 | .title_odd { 44 | font-weight: bold; 45 | margin: 5%; 46 | height: 1.5em; 47 | background: #4c66a4; /* Old browsers */ 48 | } -------------------------------------------------------------------------------- /docs/latex.libjpconj/dir_b931e7fb47ab3e484c5e2e3155fcfa9b.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_b931e7fb47ab3e484c5e2e3155fcfa9b}{}\section{libjpconj Directory Reference} 2 | \label{dir_b931e7fb47ab3e484c5e2e3155fcfa9b}\index{libjpconj Directory Reference@{libjpconj Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{inflection_8cpp}{inflection.\+cpp} 7 | \item 8 | file \hyperlink{inflection_8h}{inflection.\+h} 9 | \item 10 | file \hyperlink{jpconj_8cpp}{jpconj.\+cpp} 11 | \item 12 | file \hyperlink{jpconj_8h}{jpconj.\+h} 13 | \item 14 | file \hyperlink{jpconj__global_8h}{jpconj\+\_\+global.\+h} 15 | \item 16 | file \hyperlink{lemmatization_8cpp}{lemmatization.\+cpp} 17 | \item 18 | file \hyperlink{lemmatization_8h}{lemmatization.\+h} 19 | \item 20 | file \hyperlink{type_defs_8h}{type\+Defs.\+h} 21 | \item 22 | file \hyperlink{verbstem_8cpp}{verbstem.\+cpp} 23 | \item 24 | file \hyperlink{verbstem_8h}{verbstem.\+h} 25 | \end{DoxyCompactItemize} 26 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/_home_kariminf_Github_Projects_japkatsuyou_jpconj_Ui_.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui Directory Reference" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui Directory Reference \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Files" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "file \fBabout\&.cpp\fP" 14 | .br 15 | .ti -1c 16 | .RI "file \fBabout\&.h\fP" 17 | .br 18 | .ti -1c 19 | .RI "file \fBconjframe\&.cpp\fP" 20 | .br 21 | .ti -1c 22 | .RI "file \fBconjframe\&.h\fP" 23 | .br 24 | .ti -1c 25 | .RI "file \fBhelpviewer\&.cpp\fP" 26 | .br 27 | .ti -1c 28 | .RI "file \fBhelpviewer\&.h\fP" 29 | .br 30 | .ti -1c 31 | .RI "file \fBjpconjhelp\&.cpp\fP" 32 | .br 33 | .ti -1c 34 | .RI "file \fBjpconjhelp\&.h\fP" 35 | .br 36 | .ti -1c 37 | .RI "file \fBjpconjmain\&.cpp\fP" 38 | .br 39 | .ti -1c 40 | .RI "file \fBjpconjmain\&.h\fP" 41 | .br 42 | .ti -1c 43 | .RI "file \fBpreference\&.cpp\fP" 44 | .br 45 | .ti -1c 46 | .RI "file \fBpreference\&.h\fP" 47 | .br 48 | .in -1c 49 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/jpconjhelp.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/jpconjhelp.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/jpconjhelp.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include 'helpviewer\&.h'\fP 10 | .br 11 | \fC#include 'UiHelper/language\&.h'\fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | \fC#include \fP 22 | .br 23 | \fC#include \fP 24 | .br 25 | \fC#include \fP 26 | .br 27 | \fC#include \fP 28 | .br 29 | \fC#include \fP 30 | .br 31 | 32 | .SS "Classes" 33 | 34 | .in +1c 35 | .ti -1c 36 | .RI "class \fBjpconjhelp\fP" 37 | .br 38 | .in -1c 39 | .SS "Namespaces" 40 | 41 | .in +1c 42 | .ti -1c 43 | .RI " \fBUi\fP" 44 | .br 45 | .in -1c 46 | .SH "Author" 47 | .PP 48 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 49 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/helpviewer.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/Ui/helpviewer.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/Ui/helpviewer.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | \fC#include \fP 22 | .br 23 | \fC#include \fP 24 | .br 25 | \fC#include \fP 26 | .br 27 | \fC#include \fP 28 | .br 29 | \fC#include \fP 30 | .br 31 | \fC#include \fP 32 | .br 33 | \fC#include \fP 34 | .br 35 | \fC#include \fP 36 | .br 37 | 38 | .SS "Classes" 39 | 40 | .in +1c 41 | .ti -1c 42 | .RI "class \fBHelpViewer\fP" 43 | .br 44 | .in -1c 45 | .SH "Author" 46 | .PP 47 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 48 | -------------------------------------------------------------------------------- /docs/latex.jpconj/helpviewer_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{helpviewer_8h}{}\section{jpconj/\+Ui/helpviewer.h File Reference} 2 | \label{helpviewer_8h}\index{jpconj/\+Ui/helpviewer.\+h@{jpconj/\+Ui/helpviewer.\+h}} 3 | {\ttfamily \#include $<$Q\+Action$>$}\\* 4 | {\ttfamily \#include $<$Q\+Byte\+Array$>$}\\* 5 | {\ttfamily \#include $<$Q\+Desktop\+Services$>$}\\* 6 | {\ttfamily \#include $<$Q\+Dir$>$}\\* 7 | {\ttfamily \#include $<$Q\+Event$>$}\\* 8 | {\ttfamily \#include $<$Q\+Help\+Engine$>$}\\* 9 | {\ttfamily \#include $<$Q\+Key\+Event$>$}\\* 10 | {\ttfamily \#include $<$Q\+Network\+Access\+Manager$>$}\\* 11 | {\ttfamily \#include $<$Q\+Network\+Reply$>$}\\* 12 | {\ttfamily \#include $<$Q\+Network\+Request$>$}\\* 13 | {\ttfamily \#include $<$Q\+Timer$>$}\\* 14 | {\ttfamily \#include $<$Q\+Url$>$}\\* 15 | {\ttfamily \#include $<$Q\+Variant$>$}\\* 16 | {\ttfamily \#include $<$Q\+Web\+View$>$}\\* 17 | \subsection*{Classes} 18 | \begin{DoxyCompactItemize} 19 | \item 20 | class \hyperlink{class_help_viewer}{Help\+Viewer} 21 | \end{DoxyCompactItemize} 22 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/JTrans.3: -------------------------------------------------------------------------------- 1 | .TH "JTrans" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | JTrans \- The \fBJTrans\fP class is used to romanize hiragana and katakana\&. 6 | 7 | .SH SYNOPSIS 8 | .br 9 | .PP 10 | .PP 11 | \fC#include \fP 12 | .SS "Public Member Functions" 13 | 14 | .in +1c 15 | .ti -1c 16 | .RI "\fBJTrans\fP ()" 17 | .br 18 | .in -1c 19 | .SS "Static Public Member Functions" 20 | 21 | .in +1c 22 | .ti -1c 23 | .RI "static QString \fBhiragana2romaji\fP (QString hiragana)" 24 | .br 25 | .in -1c 26 | .SH "Detailed Description" 27 | .PP 28 | The \fBJTrans\fP class is used to romanize hiragana and katakana\&. 29 | .SH "Constructor & Destructor Documentation" 30 | .PP 31 | .SS "JTrans::JTrans ()" 32 | 33 | .SH "Member Function Documentation" 34 | .PP 35 | .SS "QString JTrans::hiragana2romaji (QString hiragana)\fC [static]\fP" 36 | 37 | 38 | .SH "Author" 39 | .PP 40 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 41 | -------------------------------------------------------------------------------- /jpconj/Media/about/license_ar: -------------------------------------------------------------------------------- 1 | 2 |

3 | حقوق النشر 2013-2016 مجموعة عنقاء الفلك AnqaFalak 4 |

5 |

6 | حقوق النشر 2013 عبد الكريم عريس 7 | (kariminfo0@gmail.com) 8 |

9 | 10 |

11 | مرخص تحت 12 | GNU GPLv3 13 | أو أي نسخة لاحقة. 14 |

15 | 16 |
17 |

18 | هذا البرنامج هو برنامج حر: يمكنك إعادة توزيعه و/أو تعديله 19 | تحت شروط رخصة غنو العمومية والتي نشرتها مؤسسة البرمجيات الحرة، 20 | سواء الإصدار 3 من الرخصة، أو أي إصدار لاحق. 21 |

22 |

23 | يوزع هذا البرنامج على أمل أن يكون مفيدا، 24 | ولكن من دون اي ضمانات؛ حتى دون ضمان 25 | صلاحية التسويق أو الملاءمة لغرض معين. 26 | راجع رخصة غنو العمومية لمزيد من التفاصيل. 27 |

28 |

29 | يجب أن تكون قد تلقيت نسخة من رخصة غنو العمومية مع هذا البرنامج. 30 | إن لم يكن كذلك، راجع 31 | http://www.gnu.org/licenses/. 32 |

33 |
-------------------------------------------------------------------------------- /docs/latex.jpconj/conjframe_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{conjframe_8h}{}\section{jpconj/\+Ui/conjframe.h File Reference} 2 | \label{conjframe_8h}\index{jpconj/\+Ui/conjframe.\+h@{jpconj/\+Ui/conjframe.\+h}} 3 | {\ttfamily \#include \char`\"{}Ui\+Helper/export.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}Func/edict2.\+h\char`\"{}}\\* 5 | {\ttfamily \#include \char`\"{}Ui\+Helper/msg.\+h\char`\"{}}\\* 6 | {\ttfamily \#include \char`\"{}Ui\+Helper/funcframe.\+h\char`\"{}}\\* 7 | {\ttfamily \#include \char`\"{}Ui/preference.\+h\char`\"{}}\\* 8 | {\ttfamily \#include \char`\"{}Func/jtrans.\+h\char`\"{}}\\* 9 | {\ttfamily \#include \char`\"{}jpconj.\+h\char`\"{}}\\* 10 | {\ttfamily \#include $<$Q\+Web\+Element$>$}\\* 11 | {\ttfamily \#include $<$Q\+Web\+Frame$>$}\\* 12 | \subsection*{Classes} 13 | \begin{DoxyCompactItemize} 14 | \item 15 | class \hyperlink{class_conj_frame}{Conj\+Frame} 16 | \end{DoxyCompactItemize} 17 | \subsection*{Namespaces} 18 | \begin{DoxyCompactItemize} 19 | \item 20 | \hyperlink{namespace_ui}{Ui} 21 | \end{DoxyCompactItemize} 22 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/Styleinfo.3: -------------------------------------------------------------------------------- 1 | .TH "Styleinfo" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | Styleinfo \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .PP 10 | \fC#include \fP 11 | .SS "Public Member Functions" 12 | 13 | .in +1c 14 | .ti -1c 15 | .RI "\fBStyleinfo\fP ()" 16 | .br 17 | .in -1c 18 | .SS "Public Attributes" 19 | 20 | .in +1c 21 | .ti -1c 22 | .RI "QString \fBname\fP" 23 | .br 24 | .ti -1c 25 | .RI "QString \fBauthor\fP" 26 | .br 27 | .ti -1c 28 | .RI "QString \fBdate\fP" 29 | .br 30 | .ti -1c 31 | .RI "QString \fBdesc\fP" 32 | .br 33 | .in -1c 34 | .SH "Constructor & Destructor Documentation" 35 | .PP 36 | .SS "Styleinfo::Styleinfo ()" 37 | 38 | .SH "Member Data Documentation" 39 | .PP 40 | .SS "QString Styleinfo::author" 41 | 42 | .SS "QString Styleinfo::date" 43 | 44 | .SS "QString Styleinfo::desc" 45 | 46 | .SS "QString Styleinfo::name" 47 | 48 | 49 | .SH "Author" 50 | .PP 51 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 52 | -------------------------------------------------------------------------------- /docs/latex.jpconj/jpconjhelp_8h.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{jpconjhelp_8h}{}\section{jpconj/\+Ui/jpconjhelp.h File Reference} 2 | \label{jpconjhelp_8h}\index{jpconj/\+Ui/jpconjhelp.\+h@{jpconj/\+Ui/jpconjhelp.\+h}} 3 | {\ttfamily \#include \char`\"{}helpviewer.\+h\char`\"{}}\\* 4 | {\ttfamily \#include \char`\"{}Ui\+Helper/language.\+h\char`\"{}}\\* 5 | {\ttfamily \#include $<$Q\+Debug$>$}\\* 6 | {\ttfamily \#include $<$Q\+Event\+Loop$>$}\\* 7 | {\ttfamily \#include $<$Q\+Main\+Window$>$}\\* 8 | {\ttfamily \#include $<$Q\+Help\+Engine$>$}\\* 9 | {\ttfamily \#include $<$Q\+Help\+Content\+Widget$>$}\\* 10 | {\ttfamily \#include $<$Q\+Help\+Index\+Widget$>$}\\* 11 | {\ttfamily \#include $<$Q\+File$>$}\\* 12 | {\ttfamily \#include $<$Q\+String\+List$>$}\\* 13 | {\ttfamily \#include $<$Q\+Web\+Frame$>$}\\* 14 | \subsection*{Classes} 15 | \begin{DoxyCompactItemize} 16 | \item 17 | class \hyperlink{classjpconjhelp}{jpconjhelp} 18 | \end{DoxyCompactItemize} 19 | \subsection*{Namespaces} 20 | \begin{DoxyCompactItemize} 21 | \item 22 | \hyperlink{namespace_ui}{Ui} 23 | \end{DoxyCompactItemize} 24 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/_home_kariminf_Github_Projects_japkatsuyou_jpconj_UiHelper_.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper Directory Reference" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper Directory Reference \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | .SS "Files" 10 | 11 | .in +1c 12 | .ti -1c 13 | .RI "file \fBexport\&.cpp\fP" 14 | .br 15 | .ti -1c 16 | .RI "file \fBexport\&.h\fP" 17 | .br 18 | .ti -1c 19 | .RI "file \fBfuncframe\&.cpp\fP" 20 | .br 21 | .ti -1c 22 | .RI "file \fBfuncframe\&.h\fP" 23 | .br 24 | .ti -1c 25 | .RI "file \fBicona\&.cpp\fP" 26 | .br 27 | .ti -1c 28 | .RI "file \fBicona\&.h\fP" 29 | .br 30 | .ti -1c 31 | .RI "file \fBjpconjtray\&.cpp\fP" 32 | .br 33 | .ti -1c 34 | .RI "file \fBjpconjtray\&.h\fP" 35 | .br 36 | .ti -1c 37 | .RI "file \fBlanguage\&.cpp\fP" 38 | .br 39 | .ti -1c 40 | .RI "file \fBlanguage\&.h\fP" 41 | .br 42 | .ti -1c 43 | .RI "file \fBmsg\&.h\fP" 44 | .br 45 | .ti -1c 46 | .RI "file \fBstyle\&.cpp\fP" 47 | .br 48 | .ti -1c 49 | .RI "file \fBstyle\&.h\fP" 50 | .br 51 | .in -1c 52 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_10.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['qdialog',['QDialog',['../class_q_dialog.html',1,'']]], 4 | ['qframe',['QFrame',['../class_q_frame.html',1,'']]], 5 | ['qkicona',['QKIcona',['../class_q_k_icona.html',1,'']]], 6 | ['qkicona_2eh',['qkicona.h',['../qkicona_8h.html',1,'']]], 7 | ['qkicona_5fglobal_2eh',['qkicona_global.h',['../qkicona__global_8h.html',1,'']]], 8 | ['qkiconashared_5fexport',['QKICONASHARED_EXPORT',['../qkicona__global_8h.html#ad87e4ed66e64c95f0dd6fa5b99a3472e',1,'qkicona_global.h']]], 9 | ['qmainwindow',['QMainWindow',['../class_q_main_window.html',1,'']]], 10 | ['qnetworkaccessmanager',['QNetworkAccessManager',['../class_q_network_access_manager.html',1,'']]], 11 | ['qnetworkreply',['QNetworkReply',['../class_q_network_reply.html',1,'']]], 12 | ['qobject',['QObject',['../class_q_object.html',1,'']]], 13 | ['qsystemtrayicon',['QSystemTrayIcon',['../class_q_system_tray_icon.html',1,'']]], 14 | ['qwebpage',['QWebPage',['../class_q_web_page.html',1,'']]], 15 | ['qwebview',['QWebView',['../class_q_web_view.html',1,'']]] 16 | ]; 17 | -------------------------------------------------------------------------------- /docs/latex.jpconj/dir_bf52adbaa2a843b5ec6519afae08e90d.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_bf52adbaa2a843b5ec6519afae08e90d}{}\section{jpconj/\+Ui Directory Reference} 2 | \label{dir_bf52adbaa2a843b5ec6519afae08e90d}\index{jpconj/\+Ui Directory Reference@{jpconj/\+Ui Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{about_8cpp}{about.\+cpp} 7 | \item 8 | file \hyperlink{about_8h}{about.\+h} 9 | \item 10 | file \hyperlink{conjframe_8cpp}{conjframe.\+cpp} 11 | \item 12 | file \hyperlink{conjframe_8h}{conjframe.\+h} 13 | \item 14 | file \hyperlink{helpviewer_8cpp}{helpviewer.\+cpp} 15 | \item 16 | file \hyperlink{helpviewer_8h}{helpviewer.\+h} 17 | \item 18 | file \hyperlink{jpconjhelp_8cpp}{jpconjhelp.\+cpp} 19 | \item 20 | file \hyperlink{jpconjhelp_8h}{jpconjhelp.\+h} 21 | \item 22 | file \hyperlink{jpconjmain_8cpp}{jpconjmain.\+cpp} 23 | \item 24 | file \hyperlink{jpconjmain_8h}{jpconjmain.\+h} 25 | \item 26 | file \hyperlink{preference_8cpp}{preference.\+cpp} 27 | \item 28 | file \hyperlink{preference_8h}{preference.\+h} 29 | \end{DoxyCompactItemize} 30 | -------------------------------------------------------------------------------- /docs/man.jpconj/man3/language.h.3: -------------------------------------------------------------------------------- 1 | .TH "jpconj/UiHelper/language.h" 3 "Tue Aug 29 2017" "Version 2.0.0" "JapKatsuyou.JpConj" \" -*- nroff -*- 2 | .ad l 3 | .nh 4 | .SH NAME 5 | jpconj/UiHelper/language.h \- 6 | .SH SYNOPSIS 7 | .br 8 | .PP 9 | \fC#include \fP 10 | .br 11 | \fC#include \fP 12 | .br 13 | \fC#include \fP 14 | .br 15 | \fC#include \fP 16 | .br 17 | \fC#include \fP 18 | .br 19 | \fC#include \fP 20 | .br 21 | \fC#include \fP 22 | .br 23 | \fC#include \fP 24 | .br 25 | \fC#include \fP 26 | .br 27 | \fC#include \fP 28 | .br 29 | 30 | .SS "Classes" 31 | 32 | .in +1c 33 | .ti -1c 34 | .RI "class \fBLanguage\fP" 35 | .br 36 | .in -1c 37 | .SS "Typedefs" 38 | 39 | .in +1c 40 | .ti -1c 41 | .RI "typedef QPair< QTranslator *, QTranslator * > \fBPairTrans\fP" 42 | .br 43 | .in -1c 44 | .SH "Typedef Documentation" 45 | .PP 46 | .SS "typedef QPair \fBPairTrans\fP" 47 | 48 | .SH "Author" 49 | .PP 50 | Generated automatically by Doxygen for JapKatsuyou\&.JpConj from the source code\&. 51 | -------------------------------------------------------------------------------- /docs/latex.jpconj/dir_39b1cb06a8863f7ce54780a12819f128.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{dir_39b1cb06a8863f7ce54780a12819f128}{}\section{jpconj/\+Ui\+Helper Directory Reference} 2 | \label{dir_39b1cb06a8863f7ce54780a12819f128}\index{jpconj/\+Ui\+Helper Directory Reference@{jpconj/\+Ui\+Helper Directory Reference}} 3 | \subsection*{Files} 4 | \begin{DoxyCompactItemize} 5 | \item 6 | file \hyperlink{export_8cpp}{export.\+cpp} 7 | \item 8 | file \hyperlink{export_8h}{export.\+h} 9 | \item 10 | file \hyperlink{funcframe_8cpp}{funcframe.\+cpp} 11 | \item 12 | file \hyperlink{funcframe_8h}{funcframe.\+h} 13 | \item 14 | file \hyperlink{icona_8cpp}{icona.\+cpp} 15 | \item 16 | file \hyperlink{icona_8h}{icona.\+h} 17 | \item 18 | file \hyperlink{jpconjtray_8cpp}{jpconjtray.\+cpp} 19 | \item 20 | file \hyperlink{jpconjtray_8h}{jpconjtray.\+h} 21 | \item 22 | file \hyperlink{language_8cpp}{language.\+cpp} 23 | \item 24 | file \hyperlink{language_8h}{language.\+h} 25 | \item 26 | file \hyperlink{msg_8h}{msg.\+h} 27 | \item 28 | file \hyperlink{style_8cpp}{style.\+cpp} 29 | \item 30 | file \hyperlink{style_8h}{style.\+h} 31 | \end{DoxyCompactItemize} 32 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/jpconj/search/all_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | --------------------------------------------------------------------------------