terminal Derived Type

type, public, abstract, extends(plot_object) :: terminal

A GNUPLOT terminal object.


Contents


Type-Bound Procedures

procedure, public :: get_command_string => term_get_command_string

  • private function term_get_command_string(this) result(x)

    Returns the appropriate GNUPLOT command string to establish appropriate parameters.

    Arguments

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

    The terminal object.

    Return Value character(len=:), allocatable

    The GNUPLOT command string.

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(term_get_string_result), public, deferred :: get_id_string

  • function term_get_string_result(this) result(x) Prototype

    Retrieves a string from a terminal.

    Arguments

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

    The 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_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.