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.
23 lines
579 B
23 lines
579 B
package com.fr.design.fun; |
|
|
|
import com.fr.design.mainframe.backgroundpane.BackgroundQuickPane; |
|
import com.fr.stable.fun.Level; |
|
import com.fr.stable.fun.Provider; |
|
import com.fr.stable.fun.mark.Mutable; |
|
|
|
/** |
|
* Created by richie on 16/5/18. |
|
* 背景设置界面接口,用于扩展设置更多类型的背景 |
|
*/ |
|
public interface BackgroundQuickUIProvider extends Mutable { |
|
|
|
String MARK_STRING = "BackgroundQuickUIProvider"; |
|
|
|
int CURRENT_LEVEL = 1; |
|
|
|
/** |
|
* 背景设置界面 |
|
* @return 设置界面 |
|
*/ |
|
BackgroundQuickPane appearanceForBackground(); |
|
}
|
|
|