Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства является частью версии 5.0 Инструментов XCode

Получить эти инструменты:

Если Вы выполняете версию Инструментов XCode кроме 5,0, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



Tk_GetDash(3)                               Tk Library Procedures                              Tk_GetDash(3)



____________________________________________________________________________________________________________

NAME
       Tk_GetDash - convert from string to valid dash structure.

SYNOPSIS
       #include <tk.h>

       int
       Tk_GetDash(interp, string, dashPtr)

ARGUMENTS
       Tcl_Interp *interp (in)        Interpreter to use for error reporting.

       const char * string (in)       Textual value to be converted.

       Tk_Dash *dashPtr (out)         Points to place to store the dash pattern value converted from string.
____________________________________________________________________________________________________________


DESCRIPTION
       These procedure parses the string and fills in the result in the Tk_Dash structure. The string can be
       a  list  of integers or a character string containing only ".,-_" or spaces. If all goes well, TCL_OK
       is returned. If string does not have the proper syntax then TCL_ERROR is returned, an  error  message
       is left in the interpreter's result, and nothing is stored at *dashPtr.

       The  first  possible  syntax is a list of integers. Each element represents the number of pixels of a
       line segment. Only the odd segments are drawn using the "outline" color. The other segments are drawn
       transparent.

       The  second  possible  syntax is a character list containing only 5 possible characters ".,-_ ".  The
       space can be used to enlarge the space between other line elements, and can not occur  as  the  first
       position in the string. Some examples:
                  -dash .     = -dash {2 4}
                  -dash -     = -dash {6 4}
                  -dash -.    = -dash {6 4 2 4}
                  -dash -..   = -dash {6 4 2 4 2 4}
                  -dash {. }  = -dash {2 8}
                  -dash ,     = -dash {4 4}

       The  main difference of this syntax with the previous is that it is shape-conserving. This means that
       all values in the dash list will be multiplied by the line width before display.  This  assures  that
       "."  will always be displayed as a dot and "-" always as a dash regardless of the line width.

       On  systems where only a limited set of dash patterns, the dash pattern will be displayed as the most
       close dash pattern that is available. For example, on Windows only the first 4 of the above  examples
       are available. The last 2 examples will be displayed identically as the first one.


KEYWORDS
       dash, conversion



Tk                                                   8.3                                       Tk_GetDash(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Tk.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Tk через их страницу создания отчетов ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.