latex_terminal Derived Type

type, public, extends(terminal) :: latex_terminal

A LATEX terminal.


Contents


Type-Bound Procedures

procedure, public :: get_command_string => tex_get_command_string

  • private function tex_get_command_string(this) result(x)

    Returns the appropriate GNUPLOT command string to establish appropriate parameters.

    Arguments

    Type IntentOptional Attributes Name
    class(latex_terminal), intent(in) :: this

    The latex_terminal object.

    Return Value character(len=:), allocatable

    The GNUPLOT command string.

procedure, public :: get_filename => tex_get_filename

  • private function tex_get_filename(this) result(txt)

    Gets the filename for the output LATEX file.

    Arguments

    Type IntentOptional Attributes Name
    class(latex_terminal), intent(in) :: this

    The latex_terminal object.

    Return Value character(len=:), allocatable

    The filename, including the file extension (.tex).

procedure, public :: get_font_name => term_get_font_name

  • private function term_get_font_name(this) result(name)

    Gets the name of the font used for text displayed by the graph.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(in) :: this

    The terminal object.

    Return Value character(len=:), allocatable

    The font name.

procedure, public :: get_font_size => term_get_font_size

  • private pure function term_get_font_size(this) result(sz)

    Gets the size of the font used by the graph.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(in) :: this

    The terminal object.

    Return Value integer(kind=int32)

    The font size, in points.

procedure, public :: get_id_string => tex_get_term_string

  • private function tex_get_term_string(this) result(x)

    Retrieves a GNUPLOT terminal identifier string.

    Arguments

    Type IntentOptional Attributes Name
    class(latex_terminal), intent(in) :: this

    The latex_terminal object.

    Return Value character(len=:), allocatable

    The string.

procedure, public :: get_plot_window_number => term_get_plot_window_number

  • private pure function term_get_plot_window_number(this) result(x)

    Gets the targeted plot window number.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(in) :: this

    The terminal object.

    Return Value integer(kind=int32)

    The plot window number.

procedure, public :: get_title => term_get_title

  • private function term_get_title(this) result(str)

    Gets the plot window's title.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(in) :: this

    The terminal object.

    Return Value character(len=:), allocatable

    The title.

procedure, public :: get_window_height => term_get_window_height

  • private pure function term_get_window_height(this) result(x)

    Gets the height of the plot window.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(in) :: this

    The terminal object.

    Return Value integer

    The height of the plot window.

procedure, public :: get_window_width => term_get_window_width

  • private pure function term_get_window_width(this) result(x)

    Gets the width of the plot window.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(in) :: this

    The terminal object.

    Return Value integer

    The width of the plot window.

procedure, public :: set_filename => tex_set_filename

  • private subroutine tex_set_filename(this, txt)

    Sets the filename for the output LATEX file.

    Arguments

    Type IntentOptional Attributes Name
    class(latex_terminal), intent(inout) :: this

    The latex_terminal object.

    character(len=*), intent(in) :: txt

    The filename, including the file extension (.tex).

procedure, public :: set_font_name => term_set_font_name

  • private subroutine term_set_font_name(this, name)

    Sets the name of the font used for text displayed by the graph.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(inout) :: this

    The terminal object.

    character(len=*), intent(in) :: name

    The font name.

procedure, public :: set_font_size => term_set_font_size

  • private subroutine term_set_font_size(this, sz)

    Sets the size of the font used by the graph.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(inout) :: this

    The terminal object.

    integer(kind=int32), intent(in) :: sz

    The font size, in points.

procedure, public :: set_plot_window_number => term_set_plot_window_number

  • private subroutine term_set_plot_window_number(this, x)

    Sets the targeted plot window number.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(inout) :: this

    The terminal object.

    integer(kind=int32), intent(in) :: x

    The plot window number.

procedure, public :: set_title => term_set_title

  • private subroutine term_set_title(this, txt)

    Sets the plot window's title.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(inout) :: this

    The terminal object.

    character(len=*), intent(in) :: txt

    The title.

procedure, public :: set_window_height => term_set_window_height

  • private subroutine term_set_window_height(this, x)

    Sets the height of the plot window.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(inout) :: this

    The terminal object.

    integer, intent(in) :: x

    The height of the plot window.

procedure, public :: set_window_width => term_set_window_width

  • private subroutine term_set_window_width(this, x)

    Sets the width of the plot window.

    Arguments

    Type IntentOptional Attributes Name
    class(terminal), intent(inout) :: this

    The terminal object.

    integer, intent(in) :: x

    The width of the plot window.