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.
22 lines
643 B
22 lines
643 B
package com.fr.design.hyperlink.popup; |
|
|
|
import com.fr.stable.Constants; |
|
|
|
public interface MobilePopupConstants { |
|
int[] BORDER_LINE_STYLE_ARRAY = new int[]{ |
|
Constants.LINE_NONE, |
|
Constants.LINE_THIN, |
|
Constants.LINE_MEDIUM, |
|
Constants.LINE_THICK, |
|
}; |
|
|
|
String Target_Template= "template"; |
|
String Target_Text = "text"; |
|
String Regular_Custom = "custom"; |
|
String Regular_Auto_Height = "auto_height"; |
|
|
|
double Popup_Center_Default_Width = 95; |
|
double Popup_Center_Default_Height = 95; |
|
double Popup_Follow_Default_Width = 40; |
|
double Popup_Follow_Default_Height = 10; |
|
}
|
|
|