Unix and Linux Discussions Tagged with join |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
4,981 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,290 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
11,867 |
Shell Programming and Scripting |
|
|
|
5 |
11,952 |
Shell Programming and Scripting |
|
|
|
2 |
4,257 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,665 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,681 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
7,860 |
Red Hat |
|
|
|
8 |
6,034 |
Shell Programming and Scripting |
|
|
|
15 |
7,764 |
Shell Programming and Scripting |
|
|
|
12 |
3,421 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
9,652 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
3,398 |
Shell Programming and Scripting |
|
|
|
6 |
10,803 |
Shell Programming and Scripting |
|
|
|
5 |
3,773 |
Shell Programming and Scripting |
|
|
|
8 |
3,514 |
Shell Programming and Scripting |
|
|
|
2 |
5,793 |
Shell Programming and Scripting |
|
|
|
9 |
2,572 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,696 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,036 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
9,699 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
12,380 |
Shell Programming and Scripting |
|
|
|
13 |
7,224 |
Windows & DOS: Issues & Discussions |
|
|
|
3 |
8,454 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
20,883 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
4,994 |
Programming |
|
|
|
2 |
6,844 |
Shell Programming and Scripting |
|
|
|
4 |
2,758 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
7,063 |
Shell Programming and Scripting |
|
|
|
1 |
2,058 |
Shell Programming and Scripting |
|
|
|
31 |
10,514 |
Shell Programming and Scripting |
|
|
|
1 |
3,909 |
Shell Programming and Scripting |
|
|
|
5 |
6,169 |
Shell Programming and Scripting |
|
|
|
7 |
3,893 |
Shell Programming and Scripting |
|
|
|
1 |
2,591 |
Shell Programming and Scripting |
|
|
|
1 |
2,420 |
Shell Programming and Scripting |
|
|
|
2 |
2,113 |
Shell Programming and Scripting |
|
|
|
5 |
13,544 |
Shell Programming and Scripting |
|
|
|
2 |
3,146 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,284 |
Shell Programming and Scripting |
Tk_GetJoinStyle(3) Tk Library Procedures Tk_GetJoinStyle(3)
__________________________________________________________________________________________________________________________________________________
NAME
Tk_GetJoinStyle, Tk_NameOfJoinStyle - translate between strings and join styles
SYNOPSIS
#include <tk.h>
int
Tk_GetJoinStyle(interp, string, joinPtr)
const char *
Tk_NameOfJoinStyle(join)
ARGUMENTS
Tcl_Interp *interp (in) Interpreter to use for error reporting.
const char *string (in) String containing name of join style: one of "bevel", "miter", or "round".
int *joinPtr (out) Pointer to location in which to store X join style corresponding to string.
int join (in) Join style: one of JoinBevel, JoinMiter, JoinRound.
_________________________________________________________________
DESCRIPTION
Tk_GetJoinStyle places in *joinPtr the X join style corresponding to string, which will be one of JoinBevel, JoinMiter, or JoinRound. Join
styles are typically used in X graphics contexts to indicate how adjacent line segments should be joined together. See the X documentation
for information on what each style implies.
Under normal circumstances the return value is TCL_OK and interp is unused. If string does not contain a valid join style or an abbrevia-
tion of one of these names, then an error message is stored in interp->result, TCL_ERROR is returned, and *joinPtr is unmodified.
Tk_NameOfJoinStyle is the logical inverse of Tk_GetJoinStyle. Given a join style such as JoinBevel it returns a statically-allocated
string corresponding to join. If join is not a legal join style, then "unknown join style" is returned.
KEYWORDS
bevel, join style, miter, round
Tk Tk_GetJoinStyle(3)