commit f5103724ecd10c948abec5ef388f6e404d6deaf9 Author: csasq Date: Fri Sep 19 16:16:07 2025 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/deployment.xml b/.idea/deployment.xml new file mode 100644 index 0000000..cc55bc3 --- /dev/null +++ b/.idea/deployment.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0e05be0 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..42e5073 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/compile_only.iml b/compile_only.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/compile_only.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/Main.java b/src/Main.java new file mode 100644 index 0000000..930198c --- /dev/null +++ b/src/Main.java @@ -0,0 +1,15 @@ +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/src/com/atcsibir/infobox/utils/Constants.java b/src/com/atcsibir/infobox/utils/Constants.java new file mode 100644 index 0000000..d0264f8 --- /dev/null +++ b/src/com/atcsibir/infobox/utils/Constants.java @@ -0,0 +1,71 @@ +package com.atcsibir.infobox.utils;/* */ +/* */ +/* */ + +import java.awt.*; +import java.io.InputStream; +import java.text.DateFormat; +import java.text.SimpleDateFormat; + +/* */ +/* */ public final class Constants { +/* */ public static final String LOGO_IMAGE = "LogoImage"; +/* */ +/* */ public static final String CHECK_LOGO_NAME = "checkLogoImage"; +/* */ +/* */ public static final String BACKGROUND_IMAGE = "BACKGROUND_IMAGE"; +/* */ +/* */ public static final String PRINTER_VKP80 = "VKP80"; +/* */ +/* 18 */ public static int TIME_OUT_CHECK = 1000; +/* */ +/* 19 */ public static int CHECK_LEFT_INDENT = 20; +/* */ +/* 20 */ public static int TALON_HEIGHT_PLUS = 0; +/* */ +/* 21 */ public static String TERMINAL_TYPE = ""; +/* */ +/* 22 */ public static final Color MFC_BRAND_BOOK_2014_RED = new Color(144, 238, 144); +/* */ +/* 23 */ public static final Color MFC_BRAND_BOOK_2014_BROWN_LIGHT = new Color(107, 142, 35); +/* */ +/* 24 */ public static final Color MFC_BRAND_BOOK_2014_BROWN_DARK = MFC_BRAND_BOOK_2014_BROWN_LIGHT; +/* */ +/* 25 */ public static final Color MFC_BRAND_BOOK_2017_NIGHT_BLUE = new Color(19054); +/* */ +/* 26 */ public static final DateFormat DATE_FORMAT_DD_MM_YYYY__HH_MM_SS = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss"); +/* */ +/* 27 */ public static final SimpleDateFormat dateTimeFormat = new SimpleDateFormat("dd.MM.yyyy HH:mm"); +/* */ +/* 28 */ public static final SimpleDateFormat dateFormat = new SimpleDateFormat("dd.MM.yyyy"); +/* */ +/* 29 */ public static final SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm"); +/* */ +/* */ public static final int COUNT_ITEMS_OF_DUAL_MENU = 12; +/* */ +/* */ public static final int COUNT_ITEMS_OF_SINGLE_MENU = 6; +/* */ +/* 32 */ public static final InputStream BRAND_BOOK_MFC_2017_FONT = Constants.class.getResourceAsStream("/ProximaRegular.otf"); +/* */ +/* 33 */ public static final InputStream BRAND_BOOK_MFC_2014_FONT = Constants.class.getResourceAsStream("/arial.ttf"); +/* */ +/* */ public static final String ADDITIONAL_INFO = "Дополнительная информация"; +/* */ +/* */ public static final String RULES_TITLE = "Правила предварительной записи ГАУ МФЦ"; +/* */ +/* */ public static final String ANTIFROD_ALERT_TEXT_PART_ONE = "Обращаем ваше внимание, что при несовпадении личных данных в талоне"; +/* */ +/* */ public static final String ANTIFROD_ALERT_TEXT_PART_TWO = "и информации о заявителе оператор может отказать в обслуживании!"; +/* */ +/* */ public static final String CONFIRM_PAGE_TITLE = ""; +/* */ +/* */ public static final String CHECKBOX_YES = "Да"; +/* */ +/* */ public static final String CHECKBOX_NO = "Нет"; +/* */ } + + +/* Location: C:\Users\Admin\Downloads\InfoBoxTerminal-1.1.36-jar-with-dependencies.jar!\com\atcsibir\infobo\\utils\Constants.class + * Java compiler version: 7 (51.0) + * JD-Core Version: 1.1.3 + */ \ No newline at end of file