App-Codit

 view release on metacpan or  search on metacpan

lib/App/Codit/ConfigVariables.pod  view on Meta::CPAN

If this option is not specified, the name of your application
will be set to the filename of your executable with the first
character in upper case.

=item B<-automenu> in L<Tk::AppWindow::Ext::MenuBar>

Default value 1.

Specifies if the menu items of all extensions should be loaded automatically.

=item B<-autotool> in L<Tk::AppWindow::Ext::ToolBar>

Default value 1.

Specifies if the toolbar items of all extensions should be loaded automatically.

=item B<-commands> in L<Tk::AppWindow>

Defines commands to be used in your application. It takes a paired list of
command names and callbacks as parameter.

 my $app = $k::AppWindw->new(
    -commands => [
       do_something1 => ['method', $obj],
       do_something2 => sub { return 1 },
    ],
 );

Only available at create time.

=item B<-compoundcolspace> in L<Tk::AppWindow::Ext::Art>

Default value 5. Used in the B<createCompound> method to
set horizontal spacing.

=item B<-configfolder> I<hookable> in L<Tk::AppWindow::Ext::ConfigFolder>

The default value depends on your operating system.

On Windows: $ENV{LOCALAPPDATA}/appname
Others: $ENV{HOME}/.local/share/appname

You can overwrite it at launch by setting a folder yourself.

=item B<-contentacpopsize> in L<App::Codit>

Specifies how many characters you type before an auto complete suggestion list pops up.

=item B<-contentacscansize> in L<App::Codit>

Specifies the minimum word length for an addition to the database.

=item B<-contentactivedelay> in L<App::Codit>

Specifies the delay in ms between the moment the user stops typing and the moment an
auto complete suggestion list pops up.

=item B<-contentautobrackets> in L<App::Codit>

Boolean. If set, Every time you type a (, {, {, ' or " it's counterpart will be placed
right after it and the insert cursor in between.

=item B<-contentautocomplete> in L<App::Codit>

Boolean. If set, auto complete is on.

=item B<-contentautoindent> in L<App::Codit>

Boolean. If set, auto indent is on.

=item B<-contentbackground> in L<App::Codit>

Background color of the Tk::CodeText widget.

=item B<-contentbgdspace> in L<App::Codit>

Background color of leading and trailing spaces when showspaces is on.

=item B<-contentbgdtab> in L<App::Codit>

Background color of leading and trailing tabs when showspaces is on.

=item B<-contentbookmarkcolor> in L<App::Codit>

Background color of line number indicator of bookmarked lines.

=item B<-contentfindbg> in L<App::Codit>

Background color search hits.

=item B<-contentfontfamily> in L<App::Codit>

Font family to be used for editing.

=item B<-contentfontsize> in L<App::Codit>

Font size to be used for editing.

=item B<-contentforeground> in L<App::Codit>

Background color of the Tk::CodeText widget.

=item B<-contentindent> in L<App::Codit>

Set the preferred indent style. You can set it to 'tab'
if you use tabs for indenting. Or you set it to the number
of spaces you want to use for indenting.

=item B<-contentmanagerclass> in L<Tk::AppWindow::Ext::MDI>

This one should always be specified and you should always define a
content manager class inheriting L<Tk::AppWindow::BaseClasses::ContentManager>.
This base class is a valid Tk widget.

=item B<-contentmanageroptions> in L<Tk::AppWindow::Ext::MDI>

The possible options to pass on to the contentmanager.
These will also become options to the main application.

=item B<-contentmatchbg> in L<App::Codit>



( run in 0.600 second using v1.01-cache-2.11-cpan-84e82930d8c )