congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
ColumnControlButton.setFocusPainted
Code IndexAdd Tabnine to your IDE (free)

How to use
setFocusPainted
method
in
org.jdesktop.swingx.table.ColumnControlButton

Best Java code snippets using org.jdesktop.swingx.table.ColumnControlButton.setFocusPainted (Showing top 5 results out of 315)

origin: org.codehaus.jtstand/jtstand-desktop

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
}
origin: com.haulmont.thirdparty/swingx-core

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
origin: org.swinglabs.swingx/swingx-all

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
origin: org.swinglabs.swingx/swingx-core

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
org.jdesktop.swingx.tableColumnControlButtonsetFocusPainted

Popular methods of ColumnControlButton

  • populatePopup
    Populates the popup from scratch. If applicable, creates and adds column visibility actions. Always
  • <init>
    Creates a column control button for the table. The button uses the given icon and has no text.
  • createVisibilityActions
    Creates and adds a ColumnVisiblityAction for every column that should be togglable via the column co
  • getAdditionalActions
    creates and returns a list of additional Actions to add to the popup. Here: the actions are looked u
  • togglePopup
    Toggles the popup component's visibility. This method is called by this control's default action. H
  • addAdditionalActionItems
    Adds additional actions to the popup, if additionalActionsVisible is true, does nothing otherwise. H
  • addVisibilityActionItems
    Adds visibility actions into the popup view. Here: delegates the list of actions to the DefaultColum
  • canControl
    Method to check if we can control column visibility POST: if true we can be sure to have an extended
  • clearAll
    removes all components from the popup, making sure to release all columnVisibility actions.
  • clearColumnVisibilityActions
    Releases actions and clears list of actions.
  • createColumnControlPopup
    Factory method to return a ColumnControlPopup. Subclasses can override to hook custom implementation
  • createColumnModelListener
    Creates the listener to columnModel. Subclasses are free to roll their own. Implementation note: th
  • createColumnControlPopup,
  • createColumnModelListener,
  • createColumnVisibilityAction,
  • createControlAction,
  • createTablePropertyChangeListener,
  • getAction,
  • getColumnControlActionKeys,
  • getColumnControlPopup,
  • getColumnModelListener,
  • getColumnVisibilityActions

Popular in Java

  • Making http requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • setScale (BigDecimal)
  • setRequestProperty (URLConnection)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now