Tabnine Logo
NSFont.userFixedPitchFontOfSize
Code IndexAdd Tabnine to your IDE (free)

How to use
userFixedPitchFontOfSize
method
in
ch.cyberduck.binding.application.NSFont

Best Java code snippets using ch.cyberduck.binding.application.NSFont.userFixedPitchFontOfSize (Showing top 3 results out of 315)

origin: iterate-ch/cyberduck

public void setCommentField(final NSTextView field) {
  this.commentField = field;
  this.commentField.setFont(NSFont.userFixedPitchFontOfSize(11f));
  this.notificationCenter.addObserver(this.id(),
    Foundation.selector("commentInputDidChange:"),
    NSText.TextDidChangeNotification,
    field.id());
  this.addObserver(new BookmarkObserver() {
    @Override
    public void change(Host bookmark) {
      updateField(commentField, bookmark.getComment());
    }
  });
}
origin: iterate-ch/cyberduck

public void setDownloadSkipRegexField(NSTextView t) {
  this.downloadSkipRegexField = t;
  this.downloadSkipRegexField.setFont(NSFont.userFixedPitchFontOfSize(9.0f));
  this.downloadSkipRegexField.setString(preferences.getProperty("queue.download.skip.regex"));
  notificationCenter.addObserver(this.id(),
    Foundation.selector("downloadSkipRegexFieldDidChange:"),
    NSText.TextDidChangeNotification,
    this.downloadSkipRegexField.id());
}
origin: iterate-ch/cyberduck

public void setUploadSkipRegexField(NSTextView b) {
  this.uploadSkipRegexField = b;
  this.uploadSkipRegexField.setFont(NSFont.userFixedPitchFontOfSize(9.0f));
  this.uploadSkipRegexField.setString(preferences.getProperty("queue.upload.skip.regex"));
  notificationCenter.addObserver(this.id(),
    Foundation.selector("uploadSkipRegexFieldDidChange:"),
    NSText.TextDidChangeNotification,
    this.uploadSkipRegexField.id());
}
ch.cyberduck.binding.applicationNSFontuserFixedPitchFontOfSize

Javadoc

Original signature : NSFont* userFixedPitchFontOfSize(CGFloat)
Aqua fixed-pitch font
native declaration : :78

Popular methods of NSFont

  • smallSystemFontSize
  • systemFontOfSize
    UI font settings Original signature : NSFont* systemFontOfSize(CGFloat) Aqua System font native decl
  • monospacedDigitSystemFontOfSize

Popular in Java

  • Finding current android device location
  • compareTo (BigDecimal)
  • findViewById (Activity)
  • setContentView (Activity)
  • Menu (java.awt)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • ImageIO (javax.imageio)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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