本文整理匯總了Java中com.intellij.ui.components.JBLabel.setComponentStyle方法的典型用法代碼示例。如果您正苦於以下問題:Java JBLabel.setComponentStyle方法的具體用法?Java JBLabel.setComponentStyle怎麽用?Java JBLabel.setComponentStyle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.intellij.ui.components.JBLabel
的用法示例。
在下文中一共展示了JBLabel.setComponentStyle方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createCustomPanel
import com.intellij.ui.components.JBLabel; //導入方法依賴的package包/類
@Nullable
@Override
protected JComponent createCustomPanel() {
myIconProjectsLabel = new JBLabel("Icon Projects:", SwingConstants.RIGHT);
myIconProjects = TextFieldWithAutoCompletion.create(
myProject,
Collections.emptyList(),
true,
myRepository.getIconProjects()
);
JBLabel descLabel = new JBLabel();
descLabel.setCopyable(true);
descLabel.setText("Only one icon is shown for each task. " +
"This icon is extracted from the projects the task belongs to.<br>" +
"You can specify the projects whose icons will be used first. " +
"Separate multiple projects with commas.");
descLabel.setComponentStyle(UIUtil.ComponentStyle.SMALL);
return FormBuilder.createFormBuilder()
.addLabeledComponent(myIconProjectsLabel, myIconProjects)
.addComponentToRightColumn(descLabel)
.getPanel();
}
示例2: createProjectMappingDescription
import com.intellij.ui.components.JBLabel; //導入方法依賴的package包/類
private JComponent createProjectMappingDescription() {
final JBLabel label = new JBLabel(myProjectMessage);
label.setComponentStyle(UIUtil.ComponentStyle.SMALL);
label.setFontColor(UIUtil.FontColor.BRIGHTER);
label.setBorder(BorderFactory.createEmptyBorder(2, 5, 2, 0));
return label;
}
示例3: createStoreBaseRevisionOption
import com.intellij.ui.components.JBLabel; //導入方法依賴的package包/類
private JComponent createStoreBaseRevisionOption() {
final JBLabel noteLabel = new JBLabel("File texts bigger than " + ourMaximumFileForBaseRevisionSize / 1000 + "K are not stored");
noteLabel.setComponentStyle(UIUtil.ComponentStyle.SMALL);
noteLabel.setFontColor(UIUtil.FontColor.BRIGHTER);
noteLabel.setBorder(BorderFactory.createEmptyBorder(2, 25, 5, 0));
final JPanel panel = new JPanel(new BorderLayout());
panel.add(myBaseRevisionTexts, BorderLayout.NORTH);
panel.add(noteLabel, BorderLayout.SOUTH);
return panel;
}
示例4: createCustomPanel
import com.intellij.ui.components.JBLabel; //導入方法依賴的package包/類
@Nullable
@Override
protected JComponent createCustomPanel() {
mySearchQueryField = new LanguageTextField(JqlLanguage.INSTANCE, myProject, myRepository.getSearchQuery());
enableJqlSearchIfSupported();
installListener(mySearchQueryField);
mySearchLabel = new JBLabel("Search:", SwingConstants.RIGHT);
myNoteLabel = new JBLabel();
myNoteLabel.setComponentStyle(UIUtil.ComponentStyle.SMALL);
updateNote();
return FormBuilder.createFormBuilder()
.addLabeledComponent(mySearchLabel, mySearchQueryField)
.addComponentToRightColumn(myNoteLabel)
.getPanel();
}