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.
|
|
|
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_LEFT_ROUND_RECT = "leftRoundRect";
|
|
|
|
String BUTTON_TYPE_RIGHT_ROUND_RECT = "rightRoundRect";
|
|
|
|
|
|
|
|
String BUTTON_GROUP_POSITION = "group_position";
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
}
|