You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
package com.fine.theme.utils; |
|
|
|
import com.formdev.flatlaf.FlatClientProperties; |
|
|
|
/** |
|
* FR-UI中使用的各类属性 |
|
* |
|
* @author Levy.Xie |
|
* @since 11.0 |
|
* Created on 2023/12/15 |
|
*/ |
|
public interface FineClientProperties extends FlatClientProperties { |
|
|
|
//--------------------------- ButtonGroup ----------------------- |
|
String BUTTON_TYPE_GROUP = "group"; |
|
String BUTTON_TYPE_GROUP_FIT = "groupFit"; |
|
|
|
String BUTTON_BORDER = "buttonBorder"; |
|
String BUTTON_BORDER_LEFT_ROUND_RECT = "leftRoundRect"; |
|
String BUTTON_BORDER_RIGHT_ROUND_RECT = "rightRoundRect"; |
|
|
|
//--------------------------- PopupMenu ----------------------- |
|
String MENU_ITEM_TYPE = "MenuItemType"; |
|
String MENU_ITEM_TYPE_LOCK = "lock"; |
|
|
|
String BUTTON_GROUP_POSITION = "group_position"; |
|
|
|
//--------------------------- Panel ---------------------------- |
|
String PANEL_TYPE = "panelType"; |
|
String ROUNDED_PANEL = "roundedPanel"; |
|
|
|
//--------------------------- ComboBox ---------------------------- |
|
String COMBO_BOX_TYPE = "comboBoxType"; |
|
String ADAPTIVE_COMBO_BOX = "adaptiveComboBox"; |
|
|
|
int GROUP_BUTTON_POSITION_INNER = 0; |
|
int GROUP_BUTTON_POSITION_LEFT = 1; |
|
int GROUP_BUTTON_POSITION_RIGHT = 2; |
|
int GROUP_BUTTON_POSITION_LEFT_TOP = 3; |
|
int GROUP_BUTTON_POSITION_LEFT_BOTTOM = 4; |
|
int GROUP_BUTTON_POSITION_RIGHT_TOP = 5; |
|
int GROUP_BUTTON_POSITION_RIGHT_BOTTOM = 6; |
|
|
|
}
|
|
|