Package com.pugh.sockso.gui.controls

Examples of com.pugh.sockso.gui.controls.TextOptionField


        builtinOptions = new BuiltinOptionField(
            p, "encoders." +fileType+ ".name",
            getEncoderOptions(fileType)
        );
        builtinBitrate = new TextOptionField( p, "encoders." +fileType+ ".bitrate" );
       
        customCommand = new TextOptionField(p, "encoders." +fileType+ ".command" );
        customCommand.setMinimumSize( new Dimension(200,20) );
       
        noneLabel = new JLabel( locale.getString("gui.label.encNoneSelected") );

    }
View Full Code Here


        builder.nextLine();
       
        builder.appendSeparator( locale.getString("gui.label.webServer") );
        builder.append( locale.getString("gui.label.port"), new NumberOptionField(p,"server.port") );
        builder.nextLine();
        builder.append( locale.getString("gui.label.basepath"), new TextOptionField(p,"server.basepath") );
        builder.nextLine();
        builder.append( locale.getString("gui.label.wwwTitle"), new TextOptionField(p,"www.title") );
        builder.nextLine();
        builder.append( locale.getString("gui.label.wwwTagline"), new TextOptionField(p,"www.tagline") );
        builder.nextLine();
        builder.append( locale.getString("gui.label.disableDownloads"), new BooleanOptionField(p,"www.disableDownloads") );
        builder.nextLine();
        builder.append( locale.getString("gui.label.enableFolderBrowsing"), new BooleanOptionField(p,"browse.folders.enabled") );
View Full Code Here

TOP

Related Classes of com.pugh.sockso.gui.controls.TextOptionField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.