Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame^] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * GUI/Motif support by Robert Webb |
| 5 | * Macintosh port by Dany St-Amant |
| 6 | * and Axel Kielhorn |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 7 | * Port to MPW by Bernhard Pruemmer |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 8 | * Initial Carbon port by Ammon Skidmore |
| 9 | * |
| 10 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 11 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 12 | * See README.txt for an overview of the Vim source code. |
| 13 | */ |
| 14 | |
| 15 | /* |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 16 | * NOTES: - Vim 7+ does not support classic MacOS. Please use Vim 6.x |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 17 | * - Comments mentioning FAQ refer to the book: |
| 18 | * "Macworld Mac Programming FAQs" from "IDG Books" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | /* |
| 22 | * TODO: Change still to merge from the macvim's iDisk |
| 23 | * |
| 24 | * error_ga, mch_errmsg, Navigation's changes in gui_mch_browse |
| 25 | * uses of MenuItemIndex, changes in gui_mch_set_shellsize, |
| 26 | * ScrapManager error handling. |
| 27 | * Comments about function remaining to Carbonize. |
| 28 | * |
| 29 | */ |
| 30 | |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 31 | /* TODO (Jussi) |
| 32 | * * Clipboard does not work (at least some cases) |
| 33 | * * ATSU font rendering has some problems |
| 34 | * * Investigate and remove dead code (there is still lots of that) |
| 35 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 36 | |
| 37 | #include <Devices.h> /* included first to avoid CR problems */ |
| 38 | #include "vim.h" |
| 39 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 40 | #define USE_CARBONIZED |
| 41 | #define USE_AEVENT /* Enable AEVENT */ |
| 42 | #undef USE_OFFSETED_WINDOW /* Debugging feature: start Vim window OFFSETed */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 43 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 44 | /* Compile as CodeWarrior External Editor */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 45 | #if defined(FEAT_CW_EDITOR) && !defined(USE_AEVENT) |
| 46 | # define USE_AEVENT /* Need Apple Event Support */ |
| 47 | #endif |
| 48 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 49 | /* Vim's Scrap flavor. */ |
| 50 | #define VIMSCRAPFLAVOR 'VIM!' |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 51 | #ifdef FEAT_MBYTE |
| 52 | # define SCRAPTEXTFLAVOR kScrapFlavorTypeUnicode |
| 53 | #else |
| 54 | # define SCRAPTEXTFLAVOR kScrapFlavorTypeText |
| 55 | #endif |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 56 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 57 | static EventHandlerUPP mouseWheelHandlerUPP = NULL; |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 58 | SInt32 gMacSystemVersion; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 59 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 60 | #ifdef MACOS_CONVERT |
| 61 | # define USE_CARBONKEYHANDLER |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 62 | |
| 63 | static int im_is_active = FALSE; |
| 64 | #if 0 |
Bram Moolenaar | ed39e1d | 2008-08-09 17:55:22 +0000 | [diff] [blame] | 65 | /* TODO: Implement me! */ |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 66 | static int im_start_row = 0; |
| 67 | static int im_start_col = 0; |
| 68 | #endif |
| 69 | |
| 70 | #define NR_ELEMS(x) (sizeof(x) / sizeof(x[0])) |
| 71 | |
| 72 | static TSMDocumentID gTSMDocument; |
| 73 | |
| 74 | static void im_on_window_switch(int active); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 75 | static EventHandlerUPP keyEventHandlerUPP = NULL; |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 76 | static EventHandlerUPP winEventHandlerUPP = NULL; |
| 77 | |
| 78 | static pascal OSStatus gui_mac_handle_window_activate( |
| 79 | EventHandlerCallRef nextHandler, EventRef theEvent, void *data); |
| 80 | |
| 81 | static pascal OSStatus gui_mac_handle_text_input( |
| 82 | EventHandlerCallRef nextHandler, EventRef theEvent, void *data); |
| 83 | |
| 84 | static pascal OSStatus gui_mac_update_input_area( |
| 85 | EventHandlerCallRef nextHandler, EventRef theEvent); |
| 86 | |
| 87 | static pascal OSStatus gui_mac_unicode_key_event( |
| 88 | EventHandlerCallRef nextHandler, EventRef theEvent); |
| 89 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 90 | #endif |
| 91 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 92 | |
| 93 | /* Include some file. TODO: move into os_mac.h */ |
| 94 | #include <Menus.h> |
| 95 | #include <Resources.h> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 96 | #include <Processes.h> |
| 97 | #ifdef USE_AEVENT |
| 98 | # include <AppleEvents.h> |
| 99 | # include <AERegistry.h> |
| 100 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 101 | # include <Gestalt.h> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 102 | #if UNIVERSAL_INTERFACES_VERSION >= 0x0330 |
| 103 | # include <ControlDefinitions.h> |
| 104 | # include <Navigation.h> /* Navigation only part of ?? */ |
| 105 | #endif |
| 106 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 107 | /* Help Manager (balloon.h, HM prefixed functions) are not supported |
| 108 | * under Carbon (Jussi) */ |
| 109 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 110 | /* New Help Interface for Mac, not implemented yet.*/ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 111 | # include <MacHelp.h> |
| 112 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 113 | |
| 114 | /* |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 115 | * These seem to be rectangle options. Why are they not found in |
| 116 | * headers? (Jussi) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 117 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 118 | #define kNothing 0 |
| 119 | #define kCreateEmpty 2 /*1*/ |
| 120 | #define kCreateRect 2 |
| 121 | #define kDestroy 3 |
| 122 | |
| 123 | /* |
| 124 | * Dany: Don't like those... |
| 125 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 126 | #define topLeft(r) (((Point*)&(r))[0]) |
| 127 | #define botRight(r) (((Point*)&(r))[1]) |
| 128 | |
| 129 | |
| 130 | /* Time of last mouse click, to detect double-click */ |
| 131 | static long lastMouseTick = 0; |
| 132 | |
| 133 | /* ??? */ |
| 134 | static RgnHandle cursorRgn; |
| 135 | static RgnHandle dragRgn; |
| 136 | static Rect dragRect; |
| 137 | static short dragRectEnbl; |
| 138 | static short dragRectControl; |
| 139 | |
| 140 | /* This variable is set when waiting for an event, which is the only moment |
| 141 | * scrollbar dragging can be done directly. It's not allowed while commands |
| 142 | * are executed, because it may move the cursor and that may cause unexpected |
| 143 | * problems (e.g., while ":s" is working). |
| 144 | */ |
| 145 | static int allow_scrollbar = FALSE; |
| 146 | |
| 147 | /* Last mouse click caused contextual menu, (to provide proper release) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 148 | static short clickIsPopup; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | |
| 150 | /* Feedback Action for Scrollbar */ |
| 151 | ControlActionUPP gScrollAction; |
| 152 | ControlActionUPP gScrollDrag; |
| 153 | |
| 154 | /* Keeping track of which scrollbar is being dragged */ |
| 155 | static ControlHandle dragged_sb = NULL; |
| 156 | |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 157 | /* Vector of char_u --> control index for hotkeys in dialogs */ |
| 158 | static short *gDialogHotKeys; |
| 159 | |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 160 | static struct |
| 161 | { |
| 162 | FMFontFamily family; |
| 163 | FMFontSize size; |
| 164 | FMFontStyle style; |
| 165 | Boolean isPanelVisible; |
| 166 | } gFontPanelInfo = { 0, 0, 0, false }; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 167 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 168 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 169 | # define USE_ATSUI_DRAWING |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 170 | int p_macatsui_last; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 171 | ATSUStyle gFontStyle; |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 172 | # ifdef FEAT_MBYTE |
| 173 | ATSUStyle gWideFontStyle; |
| 174 | # endif |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 175 | Boolean gIsFontFallbackSet; |
Bram Moolenaar | 76b96fc | 2010-07-17 16:44:59 +0200 | [diff] [blame] | 176 | UInt32 useAntialias_cached = 0x0; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 177 | #endif |
| 178 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 179 | /* Colors Macros */ |
| 180 | #define RGB(r,g,b) ((r) << 16) + ((g) << 8) + (b) |
| 181 | #define Red(c) ((c & 0x00FF0000) >> 16) |
| 182 | #define Green(c) ((c & 0x0000FF00) >> 8) |
| 183 | #define Blue(c) ((c & 0x000000FF) >> 0) |
| 184 | |
| 185 | /* Key mapping */ |
| 186 | |
| 187 | #define vk_Esc 0x35 /* -> 1B */ |
| 188 | |
| 189 | #define vk_F1 0x7A /* -> 10 */ |
| 190 | #define vk_F2 0x78 /*0x63*/ |
| 191 | #define vk_F3 0x63 /*0x76*/ |
| 192 | #define vk_F4 0x76 /*0x60*/ |
| 193 | #define vk_F5 0x60 /*0x61*/ |
| 194 | #define vk_F6 0x61 /*0x62*/ |
| 195 | #define vk_F7 0x62 /*0x63*/ /*?*/ |
| 196 | #define vk_F8 0x64 |
| 197 | #define vk_F9 0x65 |
| 198 | #define vk_F10 0x6D |
| 199 | #define vk_F11 0x67 |
| 200 | #define vk_F12 0x6F |
| 201 | #define vk_F13 0x69 |
| 202 | #define vk_F14 0x6B |
| 203 | #define vk_F15 0x71 |
| 204 | |
| 205 | #define vk_Clr 0x47 /* -> 1B (ESC) */ |
| 206 | #define vk_Enter 0x4C /* -> 03 */ |
| 207 | |
| 208 | #define vk_Space 0x31 /* -> 20 */ |
| 209 | #define vk_Tab 0x30 /* -> 09 */ |
| 210 | #define vk_Return 0x24 /* -> 0D */ |
| 211 | /* This is wrong for OSX, what is it for? */ |
| 212 | #define vk_Delete 0X08 /* -> 08 BackSpace */ |
| 213 | |
| 214 | #define vk_Help 0x72 /* -> 05 */ |
| 215 | #define vk_Home 0x73 /* -> 01 */ |
| 216 | #define vk_PageUp 0x74 /* -> 0D */ |
| 217 | #define vk_FwdDelete 0x75 /* -> 7F */ |
| 218 | #define vk_End 0x77 /* -> 04 */ |
| 219 | #define vk_PageDown 0x79 /* -> 0C */ |
| 220 | |
| 221 | #define vk_Up 0x7E /* -> 1E */ |
| 222 | #define vk_Down 0x7D /* -> 1F */ |
| 223 | #define vk_Left 0x7B /* -> 1C */ |
| 224 | #define vk_Right 0x7C /* -> 1D */ |
| 225 | |
| 226 | #define vk_Undo vk_F1 |
| 227 | #define vk_Cut vk_F2 |
| 228 | #define vk_Copy vk_F3 |
| 229 | #define vk_Paste vk_F4 |
| 230 | #define vk_PrintScreen vk_F13 |
| 231 | #define vk_SCrollLock vk_F14 |
| 232 | #define vk_Pause vk_F15 |
| 233 | #define vk_NumLock vk_Clr |
| 234 | #define vk_Insert vk_Help |
| 235 | |
| 236 | #define KeySym char |
| 237 | |
| 238 | static struct |
| 239 | { |
| 240 | KeySym key_sym; |
| 241 | char_u vim_code0; |
| 242 | char_u vim_code1; |
| 243 | } special_keys[] = |
| 244 | { |
| 245 | {vk_Up, 'k', 'u'}, |
| 246 | {vk_Down, 'k', 'd'}, |
| 247 | {vk_Left, 'k', 'l'}, |
| 248 | {vk_Right, 'k', 'r'}, |
| 249 | |
| 250 | {vk_F1, 'k', '1'}, |
| 251 | {vk_F2, 'k', '2'}, |
| 252 | {vk_F3, 'k', '3'}, |
| 253 | {vk_F4, 'k', '4'}, |
| 254 | {vk_F5, 'k', '5'}, |
| 255 | {vk_F6, 'k', '6'}, |
| 256 | {vk_F7, 'k', '7'}, |
| 257 | {vk_F8, 'k', '8'}, |
| 258 | {vk_F9, 'k', '9'}, |
| 259 | {vk_F10, 'k', ';'}, |
| 260 | |
| 261 | {vk_F11, 'F', '1'}, |
| 262 | {vk_F12, 'F', '2'}, |
| 263 | {vk_F13, 'F', '3'}, |
| 264 | {vk_F14, 'F', '4'}, |
| 265 | {vk_F15, 'F', '5'}, |
| 266 | |
| 267 | /* {XK_Help, '%', '1'}, */ |
| 268 | /* {XK_Undo, '&', '8'}, */ |
| 269 | /* {XK_BackSpace, 'k', 'b'}, */ |
| 270 | #ifndef MACOS_X |
| 271 | {vk_Delete, 'k', 'b'}, |
| 272 | #endif |
| 273 | {vk_Insert, 'k', 'I'}, |
| 274 | {vk_FwdDelete, 'k', 'D'}, |
| 275 | {vk_Home, 'k', 'h'}, |
| 276 | {vk_End, '@', '7'}, |
| 277 | /* {XK_Prior, 'k', 'P'}, */ |
| 278 | /* {XK_Next, 'k', 'N'}, */ |
| 279 | /* {XK_Print, '%', '9'}, */ |
| 280 | |
| 281 | {vk_PageUp, 'k', 'P'}, |
| 282 | {vk_PageDown, 'k', 'N'}, |
| 283 | |
| 284 | /* End of list marker: */ |
| 285 | {(KeySym)0, 0, 0} |
| 286 | }; |
| 287 | |
| 288 | /* |
| 289 | * ------------------------------------------------------------ |
| 290 | * Forward declaration (for those needed) |
| 291 | * ------------------------------------------------------------ |
| 292 | */ |
| 293 | |
| 294 | #ifdef USE_AEVENT |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 295 | OSErr HandleUnusedParms(const AppleEvent *theAEvent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 296 | #endif |
| 297 | |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 298 | #ifdef FEAT_GUI_TABLINE |
| 299 | static void initialise_tabline(void); |
| 300 | static WindowRef drawer = NULL; // TODO: put into gui.h |
| 301 | #endif |
| 302 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 303 | #ifdef USE_ATSUI_DRAWING |
| 304 | static void gui_mac_set_font_attributes(GuiFont font); |
| 305 | static void gui_mac_dispose_atsui_style(void); |
| 306 | #endif |
| 307 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 308 | /* |
| 309 | * ------------------------------------------------------------ |
| 310 | * Conversion Utility |
| 311 | * ------------------------------------------------------------ |
| 312 | */ |
| 313 | |
| 314 | /* |
| 315 | * C2Pascal_save |
| 316 | * |
| 317 | * Allocate memory and convert the C-String passed in |
| 318 | * into a pascal string |
| 319 | * |
| 320 | */ |
| 321 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 322 | char_u * |
| 323 | C2Pascal_save(char_u *Cstring) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 324 | { |
| 325 | char_u *PascalString; |
| 326 | int len; |
| 327 | |
| 328 | if (Cstring == NULL) |
| 329 | return NULL; |
| 330 | |
| 331 | len = STRLEN(Cstring); |
| 332 | |
| 333 | if (len > 255) /* Truncate if necessary */ |
| 334 | len = 255; |
| 335 | |
| 336 | PascalString = alloc(len + 1); |
| 337 | if (PascalString != NULL) |
| 338 | { |
| 339 | mch_memmove(PascalString + 1, Cstring, len); |
| 340 | PascalString[0] = len; |
| 341 | } |
| 342 | |
| 343 | return PascalString; |
| 344 | } |
| 345 | |
| 346 | /* |
| 347 | * C2Pascal_save_and_remove_backslash |
| 348 | * |
| 349 | * Allocate memory and convert the C-String passed in |
| 350 | * into a pascal string. Also remove the backslash at the same time |
| 351 | * |
| 352 | */ |
| 353 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 354 | char_u * |
| 355 | C2Pascal_save_and_remove_backslash(char_u *Cstring) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 356 | { |
| 357 | char_u *PascalString; |
| 358 | int len; |
| 359 | char_u *p, *c; |
| 360 | |
| 361 | len = STRLEN(Cstring); |
| 362 | |
| 363 | if (len > 255) /* Truncate if necessary */ |
| 364 | len = 255; |
| 365 | |
| 366 | PascalString = alloc(len + 1); |
| 367 | if (PascalString != NULL) |
| 368 | { |
| 369 | for (c = Cstring, p = PascalString+1, len = 0; (*c != 0) && (len < 255); c++) |
| 370 | { |
| 371 | if ((*c == '\\') && (c[1] != 0)) |
| 372 | { |
| 373 | c++; |
| 374 | } |
| 375 | *p = *c; |
| 376 | p++; |
| 377 | len++; |
| 378 | } |
| 379 | PascalString[0] = len; |
| 380 | } |
| 381 | |
| 382 | return PascalString; |
| 383 | } |
| 384 | |
| 385 | /* |
| 386 | * Convert the modifiers of an Event into vim's modifiers (mouse) |
| 387 | */ |
| 388 | |
| 389 | int_u |
| 390 | EventModifiers2VimMouseModifiers(EventModifiers macModifiers) |
| 391 | { |
| 392 | int_u vimModifiers = 0x00; |
| 393 | |
| 394 | if (macModifiers & (shiftKey | rightShiftKey)) |
| 395 | vimModifiers |= MOUSE_SHIFT; |
| 396 | if (macModifiers & (controlKey | rightControlKey)) |
| 397 | vimModifiers |= MOUSE_CTRL; |
| 398 | if (macModifiers & (optionKey | rightOptionKey)) |
| 399 | vimModifiers |= MOUSE_ALT; |
| 400 | #if 0 |
| 401 | /* Not yet supported */ |
| 402 | if (macModifiers & (cmdKey)) /* There's no rightCmdKey */ |
| 403 | vimModifiers |= MOUSE_CMD; |
| 404 | #endif |
| 405 | return (vimModifiers); |
| 406 | } |
| 407 | |
| 408 | /* |
| 409 | * Convert the modifiers of an Event into vim's modifiers (keys) |
| 410 | */ |
| 411 | |
| 412 | static int_u |
| 413 | EventModifiers2VimModifiers(EventModifiers macModifiers) |
| 414 | { |
| 415 | int_u vimModifiers = 0x00; |
| 416 | |
| 417 | if (macModifiers & (shiftKey | rightShiftKey)) |
| 418 | vimModifiers |= MOD_MASK_SHIFT; |
| 419 | if (macModifiers & (controlKey | rightControlKey)) |
| 420 | vimModifiers |= MOD_MASK_CTRL; |
| 421 | if (macModifiers & (optionKey | rightOptionKey)) |
| 422 | vimModifiers |= MOD_MASK_ALT; |
| 423 | #ifdef USE_CMD_KEY |
| 424 | if (macModifiers & (cmdKey)) /* There's no rightCmdKey */ |
| 425 | vimModifiers |= MOD_MASK_CMD; |
| 426 | #endif |
| 427 | return (vimModifiers); |
| 428 | } |
| 429 | |
| 430 | /* Convert a string representing a point size into pixels. The string should |
| 431 | * be a positive decimal number, with an optional decimal point (eg, "12", or |
| 432 | * "10.5"). The pixel value is returned, and a pointer to the next unconverted |
| 433 | * character is stored in *end. The flag "vertical" says whether this |
| 434 | * calculation is for a vertical (height) size or a horizontal (width) one. |
| 435 | * |
| 436 | * From gui_w48.c |
| 437 | */ |
| 438 | static int |
| 439 | points_to_pixels(char_u *str, char_u **end, int vertical) |
| 440 | { |
| 441 | int pixels; |
| 442 | int points = 0; |
| 443 | int divisor = 0; |
| 444 | |
| 445 | while (*str) |
| 446 | { |
| 447 | if (*str == '.' && divisor == 0) |
| 448 | { |
| 449 | /* Start keeping a divisor, for later */ |
| 450 | divisor = 1; |
| 451 | continue; |
| 452 | } |
| 453 | |
| 454 | if (!isdigit(*str)) |
| 455 | break; |
| 456 | |
| 457 | points *= 10; |
| 458 | points += *str - '0'; |
| 459 | divisor *= 10; |
| 460 | |
| 461 | ++str; |
| 462 | } |
| 463 | |
| 464 | if (divisor == 0) |
| 465 | divisor = 1; |
| 466 | |
| 467 | pixels = points/divisor; |
| 468 | *end = str; |
| 469 | return pixels; |
| 470 | } |
| 471 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 472 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 473 | /* |
| 474 | * Deletes all traces of any Windows-style mnemonic text (including any |
| 475 | * parentheses) from a menu item and returns the cleaned menu item title. |
| 476 | * The caller is responsible for releasing the returned string. |
| 477 | */ |
| 478 | static CFStringRef |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 479 | menu_title_removing_mnemonic(vimmenu_T *menu) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 480 | { |
| 481 | CFStringRef name; |
| 482 | size_t menuTitleLen; |
| 483 | CFIndex displayLen; |
| 484 | CFRange mnemonicStart; |
| 485 | CFRange mnemonicEnd; |
| 486 | CFMutableStringRef cleanedName; |
| 487 | |
| 488 | menuTitleLen = STRLEN(menu->dname); |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 489 | name = (CFStringRef) mac_enc_to_cfstring(menu->dname, menuTitleLen); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 490 | |
| 491 | if (name) |
| 492 | { |
| 493 | /* Simple mnemonic-removal algorithm, assumes single parenthesized |
| 494 | * mnemonic character towards the end of the menu text */ |
| 495 | mnemonicStart = CFStringFind(name, CFSTR("("), kCFCompareBackwards); |
| 496 | displayLen = CFStringGetLength(name); |
| 497 | |
| 498 | if (mnemonicStart.location != kCFNotFound |
| 499 | && (mnemonicStart.location + 2) < displayLen |
| 500 | && CFStringGetCharacterAtIndex(name, |
| 501 | mnemonicStart.location + 1) == (UniChar)menu->mnemonic) |
| 502 | { |
| 503 | if (CFStringFindWithOptions(name, CFSTR(")"), |
| 504 | CFRangeMake(mnemonicStart.location + 1, |
| 505 | displayLen - mnemonicStart.location - 1), |
| 506 | kCFCompareBackwards, &mnemonicEnd) && |
| 507 | (mnemonicStart.location + 2) == mnemonicEnd.location) |
| 508 | { |
| 509 | cleanedName = CFStringCreateMutableCopy(NULL, 0, name); |
| 510 | if (cleanedName) |
| 511 | { |
| 512 | CFStringDelete(cleanedName, |
| 513 | CFRangeMake(mnemonicStart.location, |
| 514 | mnemonicEnd.location + 1 - |
| 515 | mnemonicStart.location)); |
| 516 | |
| 517 | CFRelease(name); |
| 518 | name = cleanedName; |
| 519 | } |
| 520 | } |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | return name; |
| 525 | } |
| 526 | #endif |
| 527 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 528 | /* |
| 529 | * Convert a list of FSSpec aliases into a list of fullpathname |
| 530 | * character strings. |
| 531 | */ |
| 532 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 533 | char_u ** |
| 534 | new_fnames_from_AEDesc(AEDesc *theList, long *numFiles, OSErr *error) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 535 | { |
| 536 | char_u **fnames = NULL; |
| 537 | OSErr newError; |
| 538 | long fileCount; |
| 539 | FSSpec fileToOpen; |
| 540 | long actualSize; |
| 541 | AEKeyword dummyKeyword; |
| 542 | DescType dummyType; |
| 543 | |
| 544 | /* Get number of files in list */ |
| 545 | *error = AECountItems(theList, numFiles); |
| 546 | if (*error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 547 | return fnames; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 548 | |
| 549 | /* Allocate the pointer list */ |
| 550 | fnames = (char_u **) alloc(*numFiles * sizeof(char_u *)); |
| 551 | |
| 552 | /* Empty out the list */ |
| 553 | for (fileCount = 0; fileCount < *numFiles; fileCount++) |
| 554 | fnames[fileCount] = NULL; |
| 555 | |
| 556 | /* Scan the list of FSSpec */ |
| 557 | for (fileCount = 1; fileCount <= *numFiles; fileCount++) |
| 558 | { |
| 559 | /* Get the alias for the nth file, convert to an FSSpec */ |
| 560 | newError = AEGetNthPtr(theList, fileCount, typeFSS, |
| 561 | &dummyKeyword, &dummyType, |
| 562 | (Ptr) &fileToOpen, sizeof(FSSpec), &actualSize); |
| 563 | if (newError) |
| 564 | { |
| 565 | /* Caller is able to clean up */ |
| 566 | /* TODO: Should be clean up or not? For safety. */ |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 567 | return fnames; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | /* Convert the FSSpec to a pathname */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 571 | fnames[fileCount - 1] = FullPathFromFSSpec_save(fileToOpen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | return (fnames); |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * ------------------------------------------------------------ |
| 579 | * CodeWarrior External Editor Support |
| 580 | * ------------------------------------------------------------ |
| 581 | */ |
| 582 | #ifdef FEAT_CW_EDITOR |
| 583 | |
| 584 | /* |
| 585 | * Handle the Window Search event from CodeWarrior |
| 586 | * |
| 587 | * Description |
| 588 | * ----------- |
| 589 | * |
| 590 | * The IDE sends the Window Search AppleEvent to the editor when it |
| 591 | * needs to know whether a particular file is open in the editor. |
| 592 | * |
| 593 | * Event Reply |
| 594 | * ----------- |
| 595 | * |
| 596 | * None. Put data in the location specified in the structure received. |
| 597 | * |
| 598 | * Remarks |
| 599 | * ------- |
| 600 | * |
| 601 | * When the editor receives this event, determine whether the specified |
| 602 | * file is open. If it is, return the modification date/time for that file |
| 603 | * in the appropriate location specified in the structure. If the file is |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 604 | * not opened, put the value fnfErr(file not found) in that location. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 605 | * |
| 606 | */ |
| 607 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 608 | typedef struct WindowSearch WindowSearch; |
| 609 | struct WindowSearch /* for handling class 'KAHL', event 'SRCH', keyDirectObject typeChar*/ |
| 610 | { |
| 611 | FSSpec theFile; // identifies the file |
| 612 | long *theDate; // where to put the modification date/time |
| 613 | }; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 614 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 615 | pascal OSErr |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 616 | Handle_KAHL_SRCH_AE( |
| 617 | const AppleEvent *theAEvent, |
| 618 | AppleEvent *theReply, |
| 619 | long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 620 | { |
| 621 | OSErr error = noErr; |
| 622 | buf_T *buf; |
| 623 | int foundFile = false; |
| 624 | DescType typeCode; |
| 625 | WindowSearch SearchData; |
| 626 | Size actualSize; |
| 627 | |
| 628 | error = AEGetParamPtr(theAEvent, keyDirectObject, typeChar, &typeCode, (Ptr) &SearchData, sizeof(WindowSearch), &actualSize); |
| 629 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 630 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 631 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 632 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 633 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 634 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 635 | |
Bram Moolenaar | 2932359 | 2016-07-24 22:04:11 +0200 | [diff] [blame] | 636 | FOR_ALL_BUFFERS(buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 637 | if (buf->b_ml.ml_mfp != NULL |
| 638 | && SearchData.theFile.parID == buf->b_FSSpec.parID |
| 639 | && SearchData.theFile.name[0] == buf->b_FSSpec.name[0] |
| 640 | && STRNCMP(SearchData.theFile.name, buf->b_FSSpec.name, buf->b_FSSpec.name[0] + 1) == 0) |
| 641 | { |
| 642 | foundFile = true; |
| 643 | break; |
| 644 | } |
| 645 | |
| 646 | if (foundFile == false) |
| 647 | *SearchData.theDate = fnfErr; |
| 648 | else |
| 649 | *SearchData.theDate = buf->b_mtime; |
| 650 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 651 | return error; |
| 652 | }; |
| 653 | |
| 654 | /* |
| 655 | * Handle the Modified (from IDE to Editor) event from CodeWarrior |
| 656 | * |
| 657 | * Description |
| 658 | * ----------- |
| 659 | * |
| 660 | * The IDE sends this event to the external editor when it wants to |
| 661 | * know which files that are open in the editor have been modified. |
| 662 | * |
| 663 | * Parameters None. |
| 664 | * ---------- |
| 665 | * |
| 666 | * Event Reply |
| 667 | * ----------- |
| 668 | * The reply for this event is: |
| 669 | * |
| 670 | * keyDirectObject typeAEList required |
| 671 | * each element in the list is a structure of typeChar |
| 672 | * |
| 673 | * Remarks |
| 674 | * ------- |
| 675 | * |
| 676 | * When building the reply event, include one element in the list for |
| 677 | * each open file that has been modified. |
| 678 | * |
| 679 | */ |
| 680 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 681 | typedef struct ModificationInfo ModificationInfo; |
| 682 | struct ModificationInfo /* for replying to class 'KAHL', event 'MOD ', keyDirectObject typeAEList*/ |
| 683 | { |
| 684 | FSSpec theFile; // identifies the file |
| 685 | long theDate; // the date/time the file was last modified |
| 686 | short saved; // set this to zero when replying, unused |
| 687 | }; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 688 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 689 | pascal OSErr |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 690 | Handle_KAHL_MOD_AE( |
| 691 | const AppleEvent *theAEvent, |
| 692 | AppleEvent *theReply, |
| 693 | long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 694 | { |
| 695 | OSErr error = noErr; |
| 696 | AEDescList replyList; |
| 697 | long numFiles; |
| 698 | ModificationInfo theFile; |
| 699 | buf_T *buf; |
| 700 | |
| 701 | theFile.saved = 0; |
| 702 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 703 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 704 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 705 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 706 | |
| 707 | /* Send the reply */ |
| 708 | /* replyObject.descriptorType = typeNull; |
| 709 | replyObject.dataHandle = nil;*/ |
| 710 | |
| 711 | /* AECreateDesc(typeChar, (Ptr)&title[1], title[0], &data) */ |
| 712 | error = AECreateList(nil, 0, false, &replyList); |
| 713 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 714 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 715 | |
| 716 | #if 0 |
| 717 | error = AECountItems(&replyList, &numFiles); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 718 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 719 | /* AEPutKeyDesc(&replyList, keyAEPnject, &aDesc) |
| 720 | * AEPutKeyPtr(&replyList, keyAEPosition, typeChar, (Ptr)&theType, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 721 | * sizeof(DescType)) |
| 722 | */ |
| 723 | |
| 724 | /* AEPutDesc */ |
| 725 | #endif |
| 726 | |
| 727 | numFiles = 0; |
Bram Moolenaar | 2932359 | 2016-07-24 22:04:11 +0200 | [diff] [blame] | 728 | FOR_ALL_BUFFERS(buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 729 | if (buf->b_ml.ml_mfp != NULL) |
| 730 | { |
| 731 | /* Add this file to the list */ |
| 732 | theFile.theFile = buf->b_FSSpec; |
| 733 | theFile.theDate = buf->b_mtime; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 734 | /* theFile.theDate = time(NULL) & (time_t) 0xFFFFFFF0; */ |
| 735 | error = AEPutPtr(&replyList, numFiles, typeChar, (Ptr) &theFile, sizeof(theFile)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 736 | }; |
| 737 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 738 | #if 0 |
| 739 | error = AECountItems(&replyList, &numFiles); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 740 | #endif |
| 741 | |
| 742 | /* We can add data only if something to reply */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 743 | error = AEPutParamDesc(theReply, keyDirectObject, &replyList); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 744 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 745 | if (replyList.dataHandle) |
| 746 | AEDisposeDesc(&replyList); |
| 747 | |
| 748 | return error; |
| 749 | }; |
| 750 | |
| 751 | /* |
| 752 | * Handle the Get Text event from CodeWarrior |
| 753 | * |
| 754 | * Description |
| 755 | * ----------- |
| 756 | * |
| 757 | * The IDE sends the Get Text AppleEvent to the editor when it needs |
| 758 | * the source code from a file. For example, when the user issues a |
| 759 | * Check Syntax or Compile command, the compiler needs access to |
| 760 | * the source code contained in the file. |
| 761 | * |
| 762 | * Event Reply |
| 763 | * ----------- |
| 764 | * |
| 765 | * None. Put data in locations specified in the structure received. |
| 766 | * |
| 767 | * Remarks |
| 768 | * ------- |
| 769 | * |
| 770 | * When the editor receives this event, it must set the size of the handle |
| 771 | * in theText to fit the data in the file. It must then copy the entire |
| 772 | * contents of the specified file into the memory location specified in |
| 773 | * theText. |
| 774 | * |
| 775 | */ |
| 776 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 777 | typedef struct CW_GetText CW_GetText; |
| 778 | struct CW_GetText /* for handling class 'KAHL', event 'GTTX', keyDirectObject typeChar*/ |
| 779 | { |
| 780 | FSSpec theFile; /* identifies the file */ |
| 781 | Handle theText; /* the location where you return the text (must be resized properly) */ |
| 782 | long *unused; /* 0 (not used) */ |
| 783 | long *theDate; /* where to put the modification date/time */ |
| 784 | }; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 785 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 786 | pascal OSErr |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 787 | Handle_KAHL_GTTX_AE( |
| 788 | const AppleEvent *theAEvent, |
| 789 | AppleEvent *theReply, |
| 790 | long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 791 | { |
| 792 | OSErr error = noErr; |
| 793 | buf_T *buf; |
| 794 | int foundFile = false; |
| 795 | DescType typeCode; |
| 796 | CW_GetText GetTextData; |
| 797 | Size actualSize; |
| 798 | char_u *line; |
| 799 | char_u *fullbuffer = NULL; |
| 800 | long linesize; |
| 801 | long lineStart; |
| 802 | long BufferSize; |
| 803 | long lineno; |
| 804 | |
| 805 | error = AEGetParamPtr(theAEvent, keyDirectObject, typeChar, &typeCode, (Ptr) &GetTextData, sizeof(GetTextData), &actualSize); |
| 806 | |
| 807 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 808 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 809 | |
Bram Moolenaar | 2932359 | 2016-07-24 22:04:11 +0200 | [diff] [blame] | 810 | FOR_ALL_BUFFERS(buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 811 | if (buf->b_ml.ml_mfp != NULL) |
| 812 | if (GetTextData.theFile.parID == buf->b_FSSpec.parID) |
| 813 | { |
| 814 | foundFile = true; |
| 815 | break; |
| 816 | } |
| 817 | |
| 818 | if (foundFile) |
| 819 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 820 | BufferSize = 0; /* GetHandleSize(GetTextData.theText); */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 821 | for (lineno = 0; lineno <= buf->b_ml.ml_line_count; lineno++) |
| 822 | { |
| 823 | /* Must use the right buffer */ |
| 824 | line = ml_get_buf(buf, (linenr_T) lineno, FALSE); |
| 825 | linesize = STRLEN(line) + 1; |
| 826 | lineStart = BufferSize; |
| 827 | BufferSize += linesize; |
| 828 | /* Resize handle to linesize+1 to include the linefeed */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 829 | SetHandleSize(GetTextData.theText, BufferSize); |
| 830 | if (GetHandleSize(GetTextData.theText) != BufferSize) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 831 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 832 | break; /* Simple handling for now */ |
| 833 | } |
| 834 | else |
| 835 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 836 | HLock(GetTextData.theText); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 837 | fullbuffer = (char_u *) *GetTextData.theText; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 838 | STRCPY((char_u *)(fullbuffer + lineStart), line); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 839 | fullbuffer[BufferSize-1] = '\r'; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 840 | HUnlock(GetTextData.theText); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 841 | } |
| 842 | } |
| 843 | if (fullbuffer != NULL) |
| 844 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 845 | HLock(GetTextData.theText); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 846 | fullbuffer[BufferSize-1] = 0; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 847 | HUnlock(GetTextData.theText); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 848 | } |
| 849 | if (foundFile == false) |
| 850 | *GetTextData.theDate = fnfErr; |
| 851 | else |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 852 | /* *GetTextData.theDate = time(NULL) & (time_t) 0xFFFFFFF0;*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 853 | *GetTextData.theDate = buf->b_mtime; |
| 854 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 855 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 856 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 857 | |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 858 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 859 | } |
| 860 | |
| 861 | /* |
| 862 | * |
| 863 | */ |
| 864 | |
| 865 | /* Taken from MoreAppleEvents:ProcessHelpers*/ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 866 | pascal OSErr |
| 867 | FindProcessBySignature( |
| 868 | const OSType targetType, |
| 869 | const OSType targetCreator, |
| 870 | ProcessSerialNumberPtr psnPtr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 871 | { |
| 872 | OSErr anErr = noErr; |
| 873 | Boolean lookingForProcess = true; |
| 874 | |
| 875 | ProcessInfoRec infoRec; |
| 876 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 877 | infoRec.processInfoLength = sizeof(ProcessInfoRec); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 878 | infoRec.processName = nil; |
| 879 | infoRec.processAppSpec = nil; |
| 880 | |
| 881 | psnPtr->lowLongOfPSN = kNoProcess; |
| 882 | psnPtr->highLongOfPSN = kNoProcess; |
| 883 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 884 | while (lookingForProcess) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 885 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 886 | anErr = GetNextProcess(psnPtr); |
| 887 | if (anErr != noErr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 888 | lookingForProcess = false; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 889 | else |
| 890 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 891 | anErr = GetProcessInformation(psnPtr, &infoRec); |
| 892 | if ((anErr == noErr) |
| 893 | && (infoRec.processType == targetType) |
| 894 | && (infoRec.processSignature == targetCreator)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 895 | lookingForProcess = false; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 896 | } |
| 897 | } |
| 898 | |
| 899 | return anErr; |
| 900 | }//end FindProcessBySignature |
| 901 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 902 | void |
| 903 | Send_KAHL_MOD_AE(buf_T *buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 904 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 905 | OSErr anErr = noErr; |
| 906 | AEDesc targetAppDesc = { typeNull, nil }; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 907 | ProcessSerialNumber psn = { kNoProcess, kNoProcess }; |
| 908 | AppleEvent theReply = { typeNull, nil }; |
| 909 | AESendMode sendMode; |
| 910 | AppleEvent theEvent = {typeNull, nil }; |
| 911 | AEIdleUPP idleProcUPP = nil; |
| 912 | ModificationInfo ModData; |
| 913 | |
| 914 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 915 | anErr = FindProcessBySignature('APPL', 'CWIE', &psn); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 916 | if (anErr == noErr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 917 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 918 | anErr = AECreateDesc(typeProcessSerialNumber, &psn, |
| 919 | sizeof(ProcessSerialNumber), &targetAppDesc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 920 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 921 | if (anErr == noErr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 922 | { |
| 923 | anErr = AECreateAppleEvent( 'KAHL', 'MOD ', &targetAppDesc, |
| 924 | kAutoGenerateReturnID, kAnyTransactionID, &theEvent); |
| 925 | } |
| 926 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 927 | AEDisposeDesc(&targetAppDesc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 928 | |
| 929 | /* Add the parms */ |
| 930 | ModData.theFile = buf->b_FSSpec; |
| 931 | ModData.theDate = buf->b_mtime; |
| 932 | |
| 933 | if (anErr == noErr) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 934 | anErr = AEPutParamPtr(&theEvent, keyDirectObject, typeChar, &ModData, sizeof(ModData)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 935 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 936 | if (idleProcUPP == nil) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 937 | sendMode = kAENoReply; |
| 938 | else |
| 939 | sendMode = kAEWaitReply; |
| 940 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 941 | if (anErr == noErr) |
| 942 | anErr = AESend(&theEvent, &theReply, sendMode, kAENormalPriority, kNoTimeOut, idleProcUPP, nil); |
| 943 | if (anErr == noErr && sendMode == kAEWaitReply) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 944 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 945 | /* anErr = AEHGetHandlerError(&theReply);*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 946 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 947 | (void) AEDisposeDesc(&theReply); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 948 | } |
| 949 | } |
| 950 | #endif /* FEAT_CW_EDITOR */ |
| 951 | |
| 952 | /* |
| 953 | * ------------------------------------------------------------ |
| 954 | * Apple Event Handling procedure |
| 955 | * ------------------------------------------------------------ |
| 956 | */ |
| 957 | #ifdef USE_AEVENT |
| 958 | |
| 959 | /* |
| 960 | * Handle the Unused parms of an AppleEvent |
| 961 | */ |
| 962 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 963 | OSErr |
| 964 | HandleUnusedParms(const AppleEvent *theAEvent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 965 | { |
| 966 | OSErr error; |
| 967 | long actualSize; |
| 968 | DescType dummyType; |
| 969 | AEKeyword missedKeyword; |
| 970 | |
| 971 | /* Get the "missed keyword" attribute from the AppleEvent. */ |
| 972 | error = AEGetAttributePtr(theAEvent, keyMissedKeywordAttr, |
| 973 | typeKeyword, &dummyType, |
| 974 | (Ptr)&missedKeyword, sizeof(missedKeyword), |
| 975 | &actualSize); |
| 976 | |
| 977 | /* If the descriptor isn't found, then we got the required parameters. */ |
| 978 | if (error == errAEDescNotFound) |
| 979 | { |
| 980 | error = noErr; |
| 981 | } |
| 982 | else |
| 983 | { |
| 984 | #if 0 |
| 985 | /* Why is this removed? */ |
| 986 | error = errAEEventNotHandled; |
| 987 | #endif |
| 988 | } |
| 989 | |
| 990 | return error; |
| 991 | } |
| 992 | |
| 993 | |
| 994 | /* |
| 995 | * Handle the ODoc AppleEvent |
| 996 | * |
| 997 | * Deals with all files dragged to the application icon. |
| 998 | * |
| 999 | */ |
| 1000 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1001 | typedef struct SelectionRange SelectionRange; |
| 1002 | struct SelectionRange /* for handling kCoreClassEvent:kOpenDocuments:keyAEPosition typeChar */ |
| 1003 | { |
| 1004 | short unused1; // 0 (not used) |
| 1005 | short lineNum; // line to select (<0 to specify range) |
| 1006 | long startRange; // start of selection range (if line < 0) |
| 1007 | long endRange; // end of selection range (if line < 0) |
| 1008 | long unused2; // 0 (not used) |
| 1009 | long theDate; // modification date/time |
| 1010 | }; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1011 | |
| 1012 | /* The IDE uses the optional keyAEPosition parameter to tell the ed- |
| 1013 | itor the selection range. If lineNum is zero or greater, scroll the text |
| 1014 | to the specified line. If lineNum is less than zero, use the values in |
| 1015 | startRange and endRange to select the specified characters. Scroll |
| 1016 | the text to display the selection. If lineNum, startRange, and |
| 1017 | endRange are all negative, there is no selection range specified. |
| 1018 | */ |
| 1019 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1020 | pascal OSErr |
| 1021 | HandleODocAE(const AppleEvent *theAEvent, AppleEvent *theReply, long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1022 | { |
| 1023 | /* |
| 1024 | * TODO: Clean up the code with convert the AppleEvent into |
| 1025 | * a ":args" |
| 1026 | */ |
| 1027 | OSErr error = noErr; |
| 1028 | // OSErr firstError = noErr; |
| 1029 | // short numErrors = 0; |
| 1030 | AEDesc theList; |
| 1031 | DescType typeCode; |
| 1032 | long numFiles; |
| 1033 | // long fileCount; |
| 1034 | char_u **fnames; |
| 1035 | // char_u fname[256]; |
| 1036 | Size actualSize; |
| 1037 | SelectionRange thePosition; |
| 1038 | short gotPosition = false; |
| 1039 | long lnum; |
| 1040 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1041 | /* the direct object parameter is the list of aliases to files (one or more) */ |
| 1042 | error = AEGetParamDesc(theAEvent, keyDirectObject, typeAEList, &theList); |
| 1043 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1044 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1045 | |
| 1046 | |
| 1047 | error = AEGetParamPtr(theAEvent, keyAEPosition, typeChar, &typeCode, (Ptr) &thePosition, sizeof(SelectionRange), &actualSize); |
| 1048 | if (error == noErr) |
| 1049 | gotPosition = true; |
| 1050 | if (error == errAEDescNotFound) |
| 1051 | error = noErr; |
| 1052 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1053 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1054 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1055 | /* |
| 1056 | error = AEGetParamDesc(theAEvent, keyAEPosition, typeChar, &thePosition); |
| 1057 | |
| 1058 | if (^error) then |
| 1059 | { |
| 1060 | if (thePosition.lineNum >= 0) |
| 1061 | { |
| 1062 | // Goto this line |
| 1063 | } |
| 1064 | else |
| 1065 | { |
| 1066 | // Set the range char wise |
| 1067 | } |
| 1068 | } |
| 1069 | */ |
| 1070 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1071 | reset_VIsual(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1072 | fnames = new_fnames_from_AEDesc(&theList, &numFiles, &error); |
| 1073 | |
| 1074 | if (error) |
| 1075 | { |
| 1076 | /* TODO: empty fnames[] first */ |
| 1077 | vim_free(fnames); |
| 1078 | return (error); |
| 1079 | } |
| 1080 | |
| 1081 | if (starting > 0) |
| 1082 | { |
| 1083 | int i; |
| 1084 | char_u *p; |
Bram Moolenaar | 51b8436 | 2007-09-29 11:16:17 +0000 | [diff] [blame] | 1085 | int fnum = -1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1086 | |
| 1087 | /* these are the initial files dropped on the Vim icon */ |
| 1088 | for (i = 0 ; i < numFiles; i++) |
| 1089 | { |
| 1090 | if (ga_grow(&global_alist.al_ga, 1) == FAIL |
| 1091 | || (p = vim_strsave(fnames[i])) == NULL) |
| 1092 | mch_exit(2); |
| 1093 | else |
| 1094 | alist_add(&global_alist, p, 2); |
Bram Moolenaar | 51b8436 | 2007-09-29 11:16:17 +0000 | [diff] [blame] | 1095 | if (fnum == -1) |
| 1096 | fnum = GARGLIST[GARGCOUNT - 1].ae_fnum; |
| 1097 | } |
| 1098 | |
| 1099 | /* If the file name was already in the buffer list we need to switch |
| 1100 | * to it. */ |
| 1101 | if (curbuf->b_fnum != fnum) |
| 1102 | { |
| 1103 | char_u cmd[30]; |
| 1104 | |
| 1105 | vim_snprintf((char *)cmd, 30, "silent %dbuffer", fnum); |
| 1106 | do_cmdline_cmd(cmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1107 | } |
Bram Moolenaar | d2cec5b | 2006-03-28 21:08:56 +0000 | [diff] [blame] | 1108 | |
| 1109 | /* Change directory to the location of the first file. */ |
| 1110 | if (GARGCOUNT > 0 && vim_chdirfile(alist_name(&GARGLIST[0])) == OK) |
| 1111 | shorten_fnames(TRUE); |
| 1112 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1113 | goto finished; |
| 1114 | } |
| 1115 | |
| 1116 | /* Handle the drop, :edit to get to the file */ |
| 1117 | handle_drop(numFiles, fnames, FALSE); |
| 1118 | |
| 1119 | /* TODO: Handle the goto/select line more cleanly */ |
| 1120 | if ((numFiles == 1) & (gotPosition)) |
| 1121 | { |
| 1122 | if (thePosition.lineNum >= 0) |
| 1123 | { |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1124 | lnum = thePosition.lineNum + 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1125 | /* oap->motion_type = MLINE; |
| 1126 | setpcmark();*/ |
| 1127 | if (lnum < 1L) |
| 1128 | lnum = 1L; |
| 1129 | else if (lnum > curbuf->b_ml.ml_line_count) |
| 1130 | lnum = curbuf->b_ml.ml_line_count; |
| 1131 | curwin->w_cursor.lnum = lnum; |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1132 | curwin->w_cursor.col = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1133 | /* beginline(BL_SOL | BL_FIX);*/ |
| 1134 | } |
| 1135 | else |
| 1136 | goto_byte(thePosition.startRange + 1); |
| 1137 | } |
| 1138 | |
| 1139 | /* Update the screen display */ |
| 1140 | update_screen(NOT_VALID); |
Bram Moolenaar | f7ff6e8 | 2014-03-23 15:13:05 +0100 | [diff] [blame] | 1141 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1142 | /* Select the text if possible */ |
| 1143 | if (gotPosition) |
| 1144 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1145 | VIsual_active = TRUE; |
| 1146 | VIsual_select = FALSE; |
| 1147 | VIsual = curwin->w_cursor; |
| 1148 | if (thePosition.lineNum < 0) |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1149 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1150 | VIsual_mode = 'v'; |
| 1151 | goto_byte(thePosition.endRange); |
| 1152 | } |
| 1153 | else |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1154 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1155 | VIsual_mode = 'V'; |
| 1156 | VIsual.col = 0; |
| 1157 | } |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1158 | } |
Bram Moolenaar | f7ff6e8 | 2014-03-23 15:13:05 +0100 | [diff] [blame] | 1159 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1160 | setcursor(); |
| 1161 | out_flush(); |
| 1162 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1163 | /* Fake mouse event to wake from stall */ |
| 1164 | PostEvent(mouseUp, 0); |
| 1165 | |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1166 | finished: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1167 | AEDisposeDesc(&theList); /* dispose what we allocated */ |
| 1168 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1169 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1170 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | /* |
| 1174 | * |
| 1175 | */ |
| 1176 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1177 | pascal OSErr |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1178 | Handle_aevt_oapp_AE( |
| 1179 | const AppleEvent *theAEvent, |
| 1180 | AppleEvent *theReply, |
| 1181 | long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1182 | { |
| 1183 | OSErr error = noErr; |
| 1184 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1185 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1186 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | /* |
| 1190 | * |
| 1191 | */ |
| 1192 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1193 | pascal OSErr |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1194 | Handle_aevt_quit_AE( |
| 1195 | const AppleEvent *theAEvent, |
| 1196 | AppleEvent *theReply, |
| 1197 | long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1198 | { |
| 1199 | OSErr error = noErr; |
| 1200 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1201 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1202 | if (error) |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1203 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1204 | |
| 1205 | /* Need to fake a :confirm qa */ |
| 1206 | do_cmdline_cmd((char_u *)"confirm qa"); |
| 1207 | |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1208 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1209 | } |
| 1210 | |
| 1211 | /* |
| 1212 | * |
| 1213 | */ |
| 1214 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1215 | pascal OSErr |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1216 | Handle_aevt_pdoc_AE( |
| 1217 | const AppleEvent *theAEvent, |
| 1218 | AppleEvent *theReply, |
| 1219 | long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1220 | { |
| 1221 | OSErr error = noErr; |
| 1222 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1223 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1224 | |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1225 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
| 1228 | /* |
| 1229 | * Handling of unknown AppleEvent |
| 1230 | * |
| 1231 | * (Just get rid of all the parms) |
| 1232 | */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1233 | pascal OSErr |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1234 | Handle_unknown_AE( |
| 1235 | const AppleEvent *theAEvent, |
| 1236 | AppleEvent *theReply, |
| 1237 | long refCon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1238 | { |
| 1239 | OSErr error = noErr; |
| 1240 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1241 | error = HandleUnusedParms(theAEvent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1242 | |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 1243 | return error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1247 | /* |
| 1248 | * Install the various AppleEvent Handlers |
| 1249 | */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1250 | OSErr |
| 1251 | InstallAEHandlers(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1252 | { |
| 1253 | OSErr error; |
| 1254 | |
| 1255 | /* install open application handler */ |
| 1256 | error = AEInstallEventHandler(kCoreEventClass, kAEOpenApplication, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1257 | NewAEEventHandlerUPP(Handle_aevt_oapp_AE), 0, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1258 | if (error) |
| 1259 | { |
| 1260 | return error; |
| 1261 | } |
| 1262 | |
| 1263 | /* install quit application handler */ |
| 1264 | error = AEInstallEventHandler(kCoreEventClass, kAEQuitApplication, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1265 | NewAEEventHandlerUPP(Handle_aevt_quit_AE), 0, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1266 | if (error) |
| 1267 | { |
| 1268 | return error; |
| 1269 | } |
| 1270 | |
| 1271 | /* install open document handler */ |
| 1272 | error = AEInstallEventHandler(kCoreEventClass, kAEOpenDocuments, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1273 | NewAEEventHandlerUPP(HandleODocAE), 0, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1274 | if (error) |
| 1275 | { |
| 1276 | return error; |
| 1277 | } |
| 1278 | |
| 1279 | /* install print document handler */ |
| 1280 | error = AEInstallEventHandler(kCoreEventClass, kAEPrintDocuments, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1281 | NewAEEventHandlerUPP(Handle_aevt_pdoc_AE), 0, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1282 | |
| 1283 | /* Install Core Suite */ |
| 1284 | /* error = AEInstallEventHandler(kAECoreSuite, kAEClone, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1285 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1286 | |
| 1287 | error = AEInstallEventHandler(kAECoreSuite, kAEClose, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1288 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1289 | |
| 1290 | error = AEInstallEventHandler(kAECoreSuite, kAECountElements, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1291 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1292 | |
| 1293 | error = AEInstallEventHandler(kAECoreSuite, kAECreateElement, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1294 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1295 | |
| 1296 | error = AEInstallEventHandler(kAECoreSuite, kAEDelete, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1297 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1298 | |
| 1299 | error = AEInstallEventHandler(kAECoreSuite, kAEDoObjectsExist, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1300 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1301 | |
| 1302 | error = AEInstallEventHandler(kAECoreSuite, kAEGetData, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1303 | NewAEEventHandlerUPP(Handle_unknown_AE), kAEGetData, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1304 | |
| 1305 | error = AEInstallEventHandler(kAECoreSuite, kAEGetDataSize, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1306 | NewAEEventHandlerUPP(Handle_unknown_AE), kAEGetDataSize, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1307 | |
| 1308 | error = AEInstallEventHandler(kAECoreSuite, kAEGetClassInfo, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1309 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1310 | |
| 1311 | error = AEInstallEventHandler(kAECoreSuite, kAEGetEventInfo, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1312 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1313 | |
| 1314 | error = AEInstallEventHandler(kAECoreSuite, kAEMove, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1315 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1316 | |
| 1317 | error = AEInstallEventHandler(kAECoreSuite, kAESave, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1318 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1319 | |
| 1320 | error = AEInstallEventHandler(kAECoreSuite, kAESetData, |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1321 | NewAEEventHandlerUPP(Handle_unknown_AE), nil, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1322 | */ |
| 1323 | |
| 1324 | #ifdef FEAT_CW_EDITOR |
| 1325 | /* |
| 1326 | * Bind codewarrior support handlers |
| 1327 | */ |
| 1328 | error = AEInstallEventHandler('KAHL', 'GTTX', |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1329 | NewAEEventHandlerUPP(Handle_KAHL_GTTX_AE), 0, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1330 | if (error) |
| 1331 | { |
| 1332 | return error; |
| 1333 | } |
| 1334 | error = AEInstallEventHandler('KAHL', 'SRCH', |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1335 | NewAEEventHandlerUPP(Handle_KAHL_SRCH_AE), 0, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1336 | if (error) |
| 1337 | { |
| 1338 | return error; |
| 1339 | } |
| 1340 | error = AEInstallEventHandler('KAHL', 'MOD ', |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1341 | NewAEEventHandlerUPP(Handle_KAHL_MOD_AE), 0, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1342 | if (error) |
| 1343 | { |
| 1344 | return error; |
| 1345 | } |
| 1346 | #endif |
| 1347 | |
| 1348 | return error; |
| 1349 | |
| 1350 | } |
| 1351 | #endif /* USE_AEVENT */ |
| 1352 | |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1353 | |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1354 | /* |
| 1355 | * Callback function, installed by InstallFontPanelHandler(), below, |
| 1356 | * to handle Font Panel events. |
| 1357 | */ |
| 1358 | static OSStatus |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1359 | FontPanelHandler( |
| 1360 | EventHandlerCallRef inHandlerCallRef, |
| 1361 | EventRef inEvent, |
| 1362 | void *inUserData) |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1363 | { |
| 1364 | if (GetEventKind(inEvent) == kEventFontPanelClosed) |
| 1365 | { |
| 1366 | gFontPanelInfo.isPanelVisible = false; |
| 1367 | return noErr; |
| 1368 | } |
| 1369 | |
| 1370 | if (GetEventKind(inEvent) == kEventFontSelection) |
| 1371 | { |
| 1372 | OSStatus status; |
| 1373 | FMFontFamily newFamily; |
| 1374 | FMFontSize newSize; |
| 1375 | FMFontStyle newStyle; |
| 1376 | |
| 1377 | /* Retrieve the font family ID number. */ |
| 1378 | status = GetEventParameter(inEvent, kEventParamFMFontFamily, |
| 1379 | /*inDesiredType=*/typeFMFontFamily, /*outActualType=*/NULL, |
| 1380 | /*inBufferSize=*/sizeof(FMFontFamily), /*outActualSize=*/NULL, |
| 1381 | &newFamily); |
| 1382 | if (status == noErr) |
| 1383 | gFontPanelInfo.family = newFamily; |
| 1384 | |
| 1385 | /* Retrieve the font size. */ |
| 1386 | status = GetEventParameter(inEvent, kEventParamFMFontSize, |
| 1387 | typeFMFontSize, NULL, sizeof(FMFontSize), NULL, &newSize); |
| 1388 | if (status == noErr) |
| 1389 | gFontPanelInfo.size = newSize; |
| 1390 | |
| 1391 | /* Retrieve the font style (bold, etc.). Currently unused. */ |
| 1392 | status = GetEventParameter(inEvent, kEventParamFMFontStyle, |
| 1393 | typeFMFontStyle, NULL, sizeof(FMFontStyle), NULL, &newStyle); |
| 1394 | if (status == noErr) |
| 1395 | gFontPanelInfo.style = newStyle; |
| 1396 | } |
| 1397 | return noErr; |
| 1398 | } |
| 1399 | |
| 1400 | |
| 1401 | static void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1402 | InstallFontPanelHandler(void) |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1403 | { |
| 1404 | EventTypeSpec eventTypes[2]; |
| 1405 | EventHandlerUPP handlerUPP; |
| 1406 | /* EventHandlerRef handlerRef; */ |
| 1407 | |
| 1408 | eventTypes[0].eventClass = kEventClassFont; |
| 1409 | eventTypes[0].eventKind = kEventFontSelection; |
| 1410 | eventTypes[1].eventClass = kEventClassFont; |
| 1411 | eventTypes[1].eventKind = kEventFontPanelClosed; |
| 1412 | |
| 1413 | handlerUPP = NewEventHandlerUPP(FontPanelHandler); |
| 1414 | |
| 1415 | InstallApplicationEventHandler(handlerUPP, /*numTypes=*/2, eventTypes, |
| 1416 | /*userData=*/NULL, /*handlerRef=*/NULL); |
| 1417 | } |
| 1418 | |
| 1419 | |
| 1420 | /* |
| 1421 | * Fill the buffer pointed to by outName with the name and size |
| 1422 | * of the font currently selected in the Font Panel. |
| 1423 | */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1424 | #define FONT_STYLE_BUFFER_SIZE 32 |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1425 | static void |
Bram Moolenaar | da2303d | 2005-08-30 21:55:26 +0000 | [diff] [blame] | 1426 | GetFontPanelSelection(char_u *outName) |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1427 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1428 | Str255 buf; |
| 1429 | ByteCount fontNameLen = 0; |
| 1430 | ATSUFontID fid; |
| 1431 | char_u styleString[FONT_STYLE_BUFFER_SIZE]; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1432 | |
| 1433 | if (!outName) |
| 1434 | return; |
| 1435 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1436 | if (FMGetFontFamilyName(gFontPanelInfo.family, buf) == noErr) |
| 1437 | { |
| 1438 | /* Canonicalize localized font names */ |
| 1439 | if (FMGetFontFromFontFamilyInstance(gFontPanelInfo.family, |
| 1440 | gFontPanelInfo.style, &fid, NULL) != noErr) |
| 1441 | return; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1442 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1443 | /* Request font name with Mac encoding (otherwise we could |
| 1444 | * get an unwanted utf-16 name) */ |
| 1445 | if (ATSUFindFontName(fid, kFontFullName, kFontMacintoshPlatform, |
| 1446 | kFontNoScriptCode, kFontNoLanguageCode, |
Bram Moolenaar | da2303d | 2005-08-30 21:55:26 +0000 | [diff] [blame] | 1447 | 255, (char *)outName, &fontNameLen, NULL) != noErr) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1448 | return; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1449 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1450 | /* Only encode font size, because style (bold, italic, etc) is |
| 1451 | * already part of the font full name */ |
Bram Moolenaar | da2303d | 2005-08-30 21:55:26 +0000 | [diff] [blame] | 1452 | vim_snprintf((char *)styleString, FONT_STYLE_BUFFER_SIZE, ":h%d", |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1453 | gFontPanelInfo.size/*, |
| 1454 | ((gFontPanelInfo.style & bold)!=0 ? ":b" : ""), |
| 1455 | ((gFontPanelInfo.style & italic)!=0 ? ":i" : ""), |
| 1456 | ((gFontPanelInfo.style & underline)!=0 ? ":u" : "")*/); |
| 1457 | |
| 1458 | if ((fontNameLen + STRLEN(styleString)) < 255) |
| 1459 | STRCPY(outName + fontNameLen, styleString); |
| 1460 | } |
| 1461 | else |
| 1462 | { |
Bram Moolenaar | da2303d | 2005-08-30 21:55:26 +0000 | [diff] [blame] | 1463 | *outName = NUL; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1464 | } |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1465 | } |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1466 | |
| 1467 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1468 | /* |
| 1469 | * ------------------------------------------------------------ |
| 1470 | * Unfiled yet |
| 1471 | * ------------------------------------------------------------ |
| 1472 | */ |
| 1473 | |
| 1474 | /* |
| 1475 | * gui_mac_get_menu_item_index |
| 1476 | * |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 1477 | * Returns the index inside the menu where |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1478 | */ |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 1479 | short /* Should we return MenuItemIndex? */ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1480 | gui_mac_get_menu_item_index(vimmenu_T *pMenu) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1481 | { |
| 1482 | short index; |
| 1483 | short itemIndex = -1; |
| 1484 | vimmenu_T *pBrother; |
| 1485 | |
| 1486 | /* Only menu without parent are the: |
| 1487 | * -menu in the menubar |
| 1488 | * -popup menu |
| 1489 | * -toolbar (guess) |
| 1490 | * |
| 1491 | * Which are not items anyway. |
| 1492 | */ |
| 1493 | if (pMenu->parent) |
| 1494 | { |
| 1495 | /* Start from the Oldest Brother */ |
| 1496 | pBrother = pMenu->parent->children; |
| 1497 | index = 1; |
| 1498 | while ((pBrother) && (itemIndex == -1)) |
| 1499 | { |
| 1500 | if (pBrother == pMenu) |
| 1501 | itemIndex = index; |
| 1502 | index++; |
| 1503 | pBrother = pBrother->next; |
| 1504 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1505 | } |
| 1506 | return itemIndex; |
| 1507 | } |
| 1508 | |
| 1509 | static vimmenu_T * |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1510 | gui_mac_get_vim_menu(short menuID, short itemIndex, vimmenu_T *pMenu) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1511 | { |
| 1512 | short index; |
| 1513 | vimmenu_T *pChildMenu; |
| 1514 | vimmenu_T *pElder = pMenu->parent; |
| 1515 | |
| 1516 | |
| 1517 | /* Only menu without parent are the: |
| 1518 | * -menu in the menubar |
| 1519 | * -popup menu |
| 1520 | * -toolbar (guess) |
| 1521 | * |
| 1522 | * Which are not items anyway. |
| 1523 | */ |
| 1524 | |
| 1525 | if ((pElder) && (pElder->submenu_id == menuID)) |
| 1526 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1527 | for (index = 1; (index != itemIndex) && (pMenu != NULL); index++) |
| 1528 | pMenu = pMenu->next; |
| 1529 | } |
| 1530 | else |
| 1531 | { |
| 1532 | for (; pMenu != NULL; pMenu = pMenu->next) |
| 1533 | { |
| 1534 | if (pMenu->children != NULL) |
| 1535 | { |
| 1536 | pChildMenu = gui_mac_get_vim_menu |
| 1537 | (menuID, itemIndex, pMenu->children); |
| 1538 | if (pChildMenu) |
| 1539 | { |
| 1540 | pMenu = pChildMenu; |
| 1541 | break; |
| 1542 | } |
| 1543 | } |
| 1544 | } |
| 1545 | } |
| 1546 | return pMenu; |
| 1547 | } |
| 1548 | |
| 1549 | /* |
| 1550 | * ------------------------------------------------------------ |
| 1551 | * MacOS Feedback procedures |
| 1552 | * ------------------------------------------------------------ |
| 1553 | */ |
| 1554 | pascal |
| 1555 | void |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1556 | gui_mac_drag_thumb(ControlHandle theControl, short partCode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1557 | { |
| 1558 | scrollbar_T *sb; |
| 1559 | int value, dragging; |
| 1560 | ControlHandle theControlToUse; |
| 1561 | int dont_scroll_save = dont_scroll; |
| 1562 | |
| 1563 | theControlToUse = dragged_sb; |
| 1564 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1565 | sb = gui_find_scrollbar((long) GetControlReference(theControlToUse)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1566 | |
| 1567 | if (sb == NULL) |
| 1568 | return; |
| 1569 | |
| 1570 | /* Need to find value by diff between Old Poss New Pos */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1571 | value = GetControl32BitValue(theControlToUse); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1572 | dragging = (partCode != 0); |
| 1573 | |
| 1574 | /* When "allow_scrollbar" is FALSE still need to remember the new |
| 1575 | * position, but don't actually scroll by setting "dont_scroll". */ |
| 1576 | dont_scroll = !allow_scrollbar; |
| 1577 | gui_drag_scrollbar(sb, value, dragging); |
| 1578 | dont_scroll = dont_scroll_save; |
| 1579 | } |
| 1580 | |
| 1581 | pascal |
| 1582 | void |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1583 | gui_mac_scroll_action(ControlHandle theControl, short partCode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1584 | { |
| 1585 | /* TODO: have live support */ |
| 1586 | scrollbar_T *sb, *sb_info; |
| 1587 | long data; |
| 1588 | long value; |
| 1589 | int page; |
| 1590 | int dragging = FALSE; |
| 1591 | int dont_scroll_save = dont_scroll; |
| 1592 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1593 | sb = gui_find_scrollbar((long)GetControlReference(theControl)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1594 | |
| 1595 | if (sb == NULL) |
| 1596 | return; |
| 1597 | |
| 1598 | if (sb->wp != NULL) /* Left or right scrollbar */ |
| 1599 | { |
| 1600 | /* |
| 1601 | * Careful: need to get scrollbar info out of first (left) scrollbar |
| 1602 | * for window, but keep real scrollbar too because we must pass it to |
| 1603 | * gui_drag_scrollbar(). |
| 1604 | */ |
| 1605 | sb_info = &sb->wp->w_scrollbars[0]; |
| 1606 | |
| 1607 | if (sb_info->size > 5) |
| 1608 | page = sb_info->size - 2; /* use two lines of context */ |
| 1609 | else |
| 1610 | page = sb_info->size; |
| 1611 | } |
| 1612 | else /* Bottom scrollbar */ |
| 1613 | { |
| 1614 | sb_info = sb; |
| 1615 | page = W_WIDTH(curwin) - 5; |
| 1616 | } |
| 1617 | |
| 1618 | switch (partCode) |
| 1619 | { |
| 1620 | case kControlUpButtonPart: data = -1; break; |
| 1621 | case kControlDownButtonPart: data = 1; break; |
| 1622 | case kControlPageDownPart: data = page; break; |
| 1623 | case kControlPageUpPart: data = -page; break; |
| 1624 | default: data = 0; break; |
| 1625 | } |
| 1626 | |
| 1627 | value = sb_info->value + data; |
| 1628 | /* if (value > sb_info->max) |
| 1629 | value = sb_info->max; |
| 1630 | else if (value < 0) |
| 1631 | value = 0;*/ |
| 1632 | |
| 1633 | /* When "allow_scrollbar" is FALSE still need to remember the new |
| 1634 | * position, but don't actually scroll by setting "dont_scroll". */ |
| 1635 | dont_scroll = !allow_scrollbar; |
| 1636 | gui_drag_scrollbar(sb, value, dragging); |
| 1637 | dont_scroll = dont_scroll_save; |
| 1638 | |
| 1639 | out_flush(); |
| 1640 | gui_mch_set_scrollbar_thumb(sb, value, sb_info->size, sb_info->max); |
| 1641 | |
| 1642 | /* if (sb_info->wp != NULL) |
| 1643 | { |
| 1644 | win_T *wp; |
| 1645 | int sb_num; |
| 1646 | |
| 1647 | sb_num = 0; |
| 1648 | for (wp = firstwin; wp != sb->wp && wp != NULL; wp = W_NEXT(wp)) |
| 1649 | sb_num++; |
| 1650 | |
| 1651 | if (wp != NULL) |
| 1652 | { |
| 1653 | current_scrollbar = sb_num; |
| 1654 | scrollbar_value = value; |
| 1655 | gui_do_scroll(); |
| 1656 | gui_mch_set_scrollbar_thumb(sb, value, sb_info->size, sb_info->max); |
| 1657 | } |
| 1658 | }*/ |
| 1659 | } |
| 1660 | |
| 1661 | /* |
| 1662 | * ------------------------------------------------------------ |
| 1663 | * MacOS Click Handling procedures |
| 1664 | * ------------------------------------------------------------ |
| 1665 | */ |
| 1666 | |
| 1667 | |
| 1668 | /* |
| 1669 | * Handle a click inside the window, it may happens in the |
| 1670 | * scrollbar or the contents. |
| 1671 | * |
| 1672 | * TODO: Add support for potential TOOLBAR |
| 1673 | */ |
| 1674 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1675 | gui_mac_doInContentClick(EventRecord *theEvent, WindowPtr whichWindow) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1676 | { |
| 1677 | Point thePoint; |
| 1678 | int_u vimModifiers; |
| 1679 | short thePortion; |
| 1680 | ControlHandle theControl; |
| 1681 | int vimMouseButton; |
| 1682 | short dblClick; |
| 1683 | |
| 1684 | thePoint = theEvent->where; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1685 | GlobalToLocal(&thePoint); |
| 1686 | SelectWindow(whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1687 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1688 | thePortion = FindControl(thePoint, whichWindow, &theControl); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1689 | |
| 1690 | if (theControl != NUL) |
| 1691 | { |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 1692 | /* We hit a scrollbar */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1693 | |
| 1694 | if (thePortion != kControlIndicatorPart) |
| 1695 | { |
| 1696 | dragged_sb = theControl; |
| 1697 | TrackControl(theControl, thePoint, gScrollAction); |
| 1698 | dragged_sb = NULL; |
| 1699 | } |
| 1700 | else |
| 1701 | { |
| 1702 | dragged_sb = theControl; |
| 1703 | #if 1 |
| 1704 | TrackControl(theControl, thePoint, gScrollDrag); |
| 1705 | #else |
| 1706 | TrackControl(theControl, thePoint, NULL); |
| 1707 | #endif |
| 1708 | /* pass 0 as the part to tell gui_mac_drag_thumb, that the mouse |
| 1709 | * button has been released */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1710 | gui_mac_drag_thumb(theControl, 0); /* Should it be thePortion ? (Dany) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1711 | dragged_sb = NULL; |
| 1712 | } |
| 1713 | } |
| 1714 | else |
| 1715 | { |
| 1716 | /* We are inside the contents */ |
| 1717 | |
| 1718 | /* Convert the CTRL, OPTION, SHIFT and CMD key */ |
| 1719 | vimModifiers = EventModifiers2VimMouseModifiers(theEvent->modifiers); |
| 1720 | |
| 1721 | /* Defaults to MOUSE_LEFT as there's only one mouse button */ |
| 1722 | vimMouseButton = MOUSE_LEFT; |
| 1723 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1724 | /* Convert the CTRL_MOUSE_LEFT to MOUSE_RIGHT */ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1725 | /* TODO: NEEDED? */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1726 | clickIsPopup = FALSE; |
| 1727 | |
Bram Moolenaar | e02d7b2 | 2007-06-19 14:29:43 +0000 | [diff] [blame] | 1728 | if (mouse_model_popup() && IsShowContextualMenuClick(theEvent)) |
| 1729 | { |
| 1730 | vimMouseButton = MOUSE_RIGHT; |
| 1731 | vimModifiers &= ~MOUSE_CTRL; |
| 1732 | clickIsPopup = TRUE; |
| 1733 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1734 | |
| 1735 | /* Is it a double click ? */ |
| 1736 | dblClick = ((theEvent->when - lastMouseTick) < GetDblTime()); |
| 1737 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1738 | /* Send the mouse click to Vim */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1739 | gui_send_mouse_event(vimMouseButton, thePoint.h, |
| 1740 | thePoint.v, dblClick, vimModifiers); |
| 1741 | |
| 1742 | /* Create the rectangle around the cursor to detect |
| 1743 | * the mouse dragging |
| 1744 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1745 | #if 0 |
| 1746 | /* TODO: Do we need to this even for the contextual menu? |
| 1747 | * It may be require for popup_setpos, but for popup? |
| 1748 | */ |
| 1749 | if (vimMouseButton == MOUSE_LEFT) |
| 1750 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1751 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1752 | SetRect(&dragRect, FILL_X(X_2_COL(thePoint.h)), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1753 | FILL_Y(Y_2_ROW(thePoint.v)), |
| 1754 | FILL_X(X_2_COL(thePoint.h)+1), |
| 1755 | FILL_Y(Y_2_ROW(thePoint.v)+1)); |
| 1756 | |
| 1757 | dragRectEnbl = TRUE; |
| 1758 | dragRectControl = kCreateRect; |
| 1759 | } |
| 1760 | } |
| 1761 | } |
| 1762 | |
| 1763 | /* |
| 1764 | * Handle the click in the titlebar (to move the window) |
| 1765 | */ |
| 1766 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1767 | gui_mac_doInDragClick(Point where, WindowPtr whichWindow) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1768 | { |
| 1769 | Rect movingLimits; |
| 1770 | Rect *movingLimitsPtr = &movingLimits; |
| 1771 | |
| 1772 | /* TODO: may try to prevent move outside screen? */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1773 | movingLimitsPtr = GetRegionBounds(GetGrayRgn(), &movingLimits); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1774 | DragWindow(whichWindow, where, movingLimitsPtr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1775 | } |
| 1776 | |
| 1777 | /* |
| 1778 | * Handle the click in the grow box |
| 1779 | */ |
| 1780 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1781 | gui_mac_doInGrowClick(Point where, WindowPtr whichWindow) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1782 | { |
| 1783 | |
| 1784 | long newSize; |
| 1785 | unsigned short newWidth; |
| 1786 | unsigned short newHeight; |
| 1787 | Rect resizeLimits; |
| 1788 | Rect *resizeLimitsPtr = &resizeLimits; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1789 | Rect NewContentRect; |
| 1790 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1791 | resizeLimitsPtr = GetRegionBounds(GetGrayRgn(), &resizeLimits); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1792 | |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 1793 | /* Set the minimum size */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1794 | /* TODO: Should this come from Vim? */ |
| 1795 | resizeLimits.top = 100; |
| 1796 | resizeLimits.left = 100; |
| 1797 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1798 | newSize = ResizeWindow(whichWindow, where, &resizeLimits, &NewContentRect); |
| 1799 | newWidth = NewContentRect.right - NewContentRect.left; |
| 1800 | newHeight = NewContentRect.bottom - NewContentRect.top; |
| 1801 | gui_resize_shell(newWidth, newHeight); |
| 1802 | gui_mch_set_bg_color(gui.back_pixel); |
Bram Moolenaar | afa2499 | 2006-03-27 20:58:26 +0000 | [diff] [blame] | 1803 | gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1804 | } |
| 1805 | |
| 1806 | /* |
| 1807 | * Handle the click in the zoom box |
| 1808 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1809 | static void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1810 | gui_mac_doInZoomClick(EventRecord *theEvent, WindowPtr whichWindow) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1811 | { |
| 1812 | Rect r; |
| 1813 | Point p; |
| 1814 | short thePart; |
| 1815 | |
| 1816 | /* ideal width is current */ |
| 1817 | p.h = Columns * gui.char_width + 2 * gui.border_offset; |
| 1818 | if (gui.which_scrollbars[SBAR_LEFT]) |
| 1819 | p.h += gui.scrollbar_width; |
| 1820 | if (gui.which_scrollbars[SBAR_RIGHT]) |
| 1821 | p.h += gui.scrollbar_width; |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 1822 | /* ideal height is as high as we can get */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1823 | p.v = 15 * 1024; |
| 1824 | |
| 1825 | thePart = IsWindowInStandardState(whichWindow, &p, &r) |
| 1826 | ? inZoomIn : inZoomOut; |
| 1827 | |
| 1828 | if (!TrackBox(whichWindow, theEvent->where, thePart)) |
| 1829 | return; |
| 1830 | |
| 1831 | /* use returned width */ |
| 1832 | p.h = r.right - r.left; |
| 1833 | /* adjust returned height */ |
| 1834 | p.v = r.bottom - r.top - 2 * gui.border_offset; |
| 1835 | if (gui.which_scrollbars[SBAR_BOTTOM]) |
| 1836 | p.v -= gui.scrollbar_height; |
| 1837 | p.v -= p.v % gui.char_height; |
| 1838 | p.v += 2 * gui.border_width; |
Bram Moolenaar | d8644bd | 2011-06-12 20:33:38 +0200 | [diff] [blame] | 1839 | if (gui.which_scrollbars[SBAR_BOTTOM]) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1840 | p.v += gui.scrollbar_height; |
| 1841 | |
| 1842 | ZoomWindowIdeal(whichWindow, thePart, &p); |
| 1843 | |
| 1844 | GetWindowBounds(whichWindow, kWindowContentRgn, &r); |
| 1845 | gui_resize_shell(r.right - r.left, r.bottom - r.top); |
| 1846 | gui_mch_set_bg_color(gui.back_pixel); |
Bram Moolenaar | afa2499 | 2006-03-27 20:58:26 +0000 | [diff] [blame] | 1847 | gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1848 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1849 | |
| 1850 | /* |
| 1851 | * ------------------------------------------------------------ |
| 1852 | * MacOS Event Handling procedure |
| 1853 | * ------------------------------------------------------------ |
| 1854 | */ |
| 1855 | |
| 1856 | /* |
| 1857 | * Handle the Update Event |
| 1858 | */ |
| 1859 | |
| 1860 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1861 | gui_mac_doUpdateEvent(EventRecord *event) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1862 | { |
| 1863 | WindowPtr whichWindow; |
| 1864 | GrafPtr savePort; |
| 1865 | RgnHandle updateRgn; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1866 | Rect updateRect; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1867 | Rect *updateRectPtr; |
| 1868 | Rect rc; |
| 1869 | Rect growRect; |
| 1870 | RgnHandle saveRgn; |
| 1871 | |
| 1872 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1873 | updateRgn = NewRgn(); |
| 1874 | if (updateRgn == NULL) |
| 1875 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1876 | |
| 1877 | /* This could be done by the caller as we |
| 1878 | * don't require anything else out of the event |
| 1879 | */ |
| 1880 | whichWindow = (WindowPtr) event->message; |
| 1881 | |
| 1882 | /* Save Current Port */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1883 | GetPort(&savePort); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1884 | |
| 1885 | /* Select the Window's Port */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1886 | SetPortWindowPort(whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1887 | |
| 1888 | /* Let's update the window */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1889 | BeginUpdate(whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1890 | /* Redraw the biggest rectangle covering the area |
| 1891 | * to be updated. |
| 1892 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1893 | GetPortVisibleRegion(GetWindowPort(whichWindow), updateRgn); |
| 1894 | # if 0 |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 1895 | /* Would be more appropriate to use the following but doesn't |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1896 | * seem to work under MacOS X (Dany) |
| 1897 | */ |
| 1898 | GetWindowRegion(whichWindow, kWindowUpdateRgn, updateRgn); |
| 1899 | # endif |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1900 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1901 | /* Use the HLock useless in Carbon? Is it harmful?*/ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1902 | HLock((Handle) updateRgn); |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1903 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1904 | updateRectPtr = GetRegionBounds(updateRgn, &updateRect); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1905 | # if 0 |
| 1906 | /* Code from original Carbon Port (using GetWindowRegion. |
| 1907 | * I believe the UpdateRgn is already in local (Dany) |
| 1908 | */ |
| 1909 | GlobalToLocal(&topLeft(updateRect)); /* preCarbon? */ |
| 1910 | GlobalToLocal(&botRight(updateRect)); |
| 1911 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1912 | /* Update the content (i.e. the text) */ |
| 1913 | gui_redraw(updateRectPtr->left, updateRectPtr->top, |
| 1914 | updateRectPtr->right - updateRectPtr->left, |
| 1915 | updateRectPtr->bottom - updateRectPtr->top); |
| 1916 | /* Clear the border areas if needed */ |
| 1917 | gui_mch_set_bg_color(gui.back_pixel); |
| 1918 | if (updateRectPtr->left < FILL_X(0)) |
| 1919 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1920 | SetRect(&rc, 0, 0, FILL_X(0), FILL_Y(Rows)); |
| 1921 | EraseRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1922 | } |
| 1923 | if (updateRectPtr->top < FILL_Y(0)) |
| 1924 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1925 | SetRect(&rc, 0, 0, FILL_X(Columns), FILL_Y(0)); |
| 1926 | EraseRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1927 | } |
| 1928 | if (updateRectPtr->right > FILL_X(Columns)) |
| 1929 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1930 | SetRect(&rc, FILL_X(Columns), 0, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1931 | FILL_X(Columns) + gui.border_offset, FILL_Y(Rows)); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1932 | EraseRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1933 | } |
| 1934 | if (updateRectPtr->bottom > FILL_Y(Rows)) |
| 1935 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1936 | SetRect(&rc, 0, FILL_Y(Rows), FILL_X(Columns) + gui.border_offset, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1937 | FILL_Y(Rows) + gui.border_offset); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1938 | EraseRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1939 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1940 | HUnlock((Handle) updateRgn); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1941 | DisposeRgn(updateRgn); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1942 | |
| 1943 | /* Update scrollbars */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1944 | DrawControls(whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1945 | |
| 1946 | /* Update the GrowBox */ |
| 1947 | /* Taken from FAQ 33-27 */ |
| 1948 | saveRgn = NewRgn(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1949 | GetWindowBounds(whichWindow, kWindowGrowRgn, &growRect); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1950 | GetClip(saveRgn); |
| 1951 | ClipRect(&growRect); |
| 1952 | DrawGrowIcon(whichWindow); |
| 1953 | SetClip(saveRgn); |
| 1954 | DisposeRgn(saveRgn); |
| 1955 | EndUpdate(whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1956 | |
| 1957 | /* Restore original Port */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1958 | SetPort(savePort); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1959 | } |
| 1960 | |
| 1961 | /* |
| 1962 | * Handle the activate/deactivate event |
| 1963 | * (apply to a window) |
| 1964 | */ |
| 1965 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1966 | gui_mac_doActivateEvent(EventRecord *event) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1967 | { |
| 1968 | WindowPtr whichWindow; |
| 1969 | |
| 1970 | whichWindow = (WindowPtr) event->message; |
Bram Moolenaar | e02d7b2 | 2007-06-19 14:29:43 +0000 | [diff] [blame] | 1971 | /* Dim scrollbars */ |
| 1972 | if (whichWindow == gui.VimWindow) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1973 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 1974 | ControlRef rootControl; |
| 1975 | GetRootControl(gui.VimWindow, &rootControl); |
| 1976 | if ((event->modifiers) & activeFlag) |
| 1977 | ActivateControl(rootControl); |
| 1978 | else |
| 1979 | DeactivateControl(rootControl); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1980 | } |
Bram Moolenaar | e02d7b2 | 2007-06-19 14:29:43 +0000 | [diff] [blame] | 1981 | |
| 1982 | /* Activate */ |
| 1983 | gui_focus_change((event->modifiers) & activeFlag); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1984 | } |
| 1985 | |
| 1986 | |
| 1987 | /* |
| 1988 | * Handle the suspend/resume event |
| 1989 | * (apply to the application) |
| 1990 | */ |
| 1991 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 1992 | gui_mac_doSuspendEvent(EventRecord *event) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1993 | { |
| 1994 | /* The frontmost application just changed */ |
| 1995 | |
| 1996 | /* NOTE: the suspend may happen before the deactivate |
| 1997 | * seen on MacOS X |
| 1998 | */ |
| 1999 | |
| 2000 | /* May not need to change focus as the window will |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 2001 | * get an activate/deactivate event |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2002 | */ |
| 2003 | if (event->message & 1) |
| 2004 | /* Resume */ |
| 2005 | gui_focus_change(TRUE); |
| 2006 | else |
| 2007 | /* Suspend */ |
| 2008 | gui_focus_change(FALSE); |
| 2009 | } |
| 2010 | |
| 2011 | /* |
| 2012 | * Handle the key |
| 2013 | */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2014 | #ifdef USE_CARBONKEYHANDLER |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2015 | static pascal OSStatus |
| 2016 | gui_mac_handle_window_activate( |
| 2017 | EventHandlerCallRef nextHandler, |
| 2018 | EventRef theEvent, |
| 2019 | void *data) |
| 2020 | { |
| 2021 | UInt32 eventClass = GetEventClass(theEvent); |
| 2022 | UInt32 eventKind = GetEventKind(theEvent); |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 2023 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2024 | if (eventClass == kEventClassWindow) |
| 2025 | { |
| 2026 | switch (eventKind) |
| 2027 | { |
| 2028 | case kEventWindowActivated: |
| 2029 | #if defined(USE_IM_CONTROL) |
| 2030 | im_on_window_switch(TRUE); |
| 2031 | #endif |
| 2032 | return noErr; |
| 2033 | |
| 2034 | case kEventWindowDeactivated: |
| 2035 | #if defined(USE_IM_CONTROL) |
| 2036 | im_on_window_switch(FALSE); |
| 2037 | #endif |
| 2038 | return noErr; |
| 2039 | } |
| 2040 | } |
| 2041 | |
| 2042 | return eventNotHandledErr; |
| 2043 | } |
| 2044 | |
| 2045 | static pascal OSStatus |
| 2046 | gui_mac_handle_text_input( |
| 2047 | EventHandlerCallRef nextHandler, |
| 2048 | EventRef theEvent, |
| 2049 | void *data) |
| 2050 | { |
| 2051 | UInt32 eventClass = GetEventClass(theEvent); |
| 2052 | UInt32 eventKind = GetEventKind(theEvent); |
| 2053 | |
| 2054 | if (eventClass != kEventClassTextInput) |
| 2055 | return eventNotHandledErr; |
| 2056 | |
| 2057 | if ((kEventTextInputUpdateActiveInputArea != eventKind) && |
| 2058 | (kEventTextInputUnicodeForKeyEvent != eventKind) && |
| 2059 | (kEventTextInputOffsetToPos != eventKind) && |
| 2060 | (kEventTextInputPosToOffset != eventKind) && |
| 2061 | (kEventTextInputGetSelectedText != eventKind)) |
| 2062 | return eventNotHandledErr; |
| 2063 | |
| 2064 | switch (eventKind) |
| 2065 | { |
| 2066 | case kEventTextInputUpdateActiveInputArea: |
| 2067 | return gui_mac_update_input_area(nextHandler, theEvent); |
| 2068 | case kEventTextInputUnicodeForKeyEvent: |
| 2069 | return gui_mac_unicode_key_event(nextHandler, theEvent); |
| 2070 | |
| 2071 | case kEventTextInputOffsetToPos: |
| 2072 | case kEventTextInputPosToOffset: |
| 2073 | case kEventTextInputGetSelectedText: |
| 2074 | break; |
| 2075 | } |
| 2076 | |
| 2077 | return eventNotHandledErr; |
| 2078 | } |
| 2079 | |
| 2080 | static pascal |
| 2081 | OSStatus gui_mac_update_input_area( |
| 2082 | EventHandlerCallRef nextHandler, |
| 2083 | EventRef theEvent) |
| 2084 | { |
| 2085 | return eventNotHandledErr; |
| 2086 | } |
| 2087 | |
| 2088 | static int dialog_busy = FALSE; /* TRUE when gui_mch_dialog() wants the |
| 2089 | keys */ |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 2090 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2091 | # define INLINE_KEY_BUFFER_SIZE 80 |
| 2092 | static pascal OSStatus |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2093 | gui_mac_unicode_key_event( |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2094 | EventHandlerCallRef nextHandler, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2095 | EventRef theEvent) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2096 | { |
| 2097 | /* Multibyte-friendly key event handler */ |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2098 | OSStatus err = -1; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2099 | UInt32 actualSize; |
| 2100 | UniChar *text; |
| 2101 | char_u result[INLINE_KEY_BUFFER_SIZE]; |
| 2102 | short len = 0; |
| 2103 | UInt32 key_sym; |
| 2104 | char charcode; |
| 2105 | int key_char; |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2106 | UInt32 modifiers, vimModifiers; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2107 | size_t encLen; |
| 2108 | char_u *to = NULL; |
| 2109 | Boolean isSpecial = FALSE; |
| 2110 | int i; |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2111 | EventRef keyEvent; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2112 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2113 | /* Mask the mouse (as per user setting) */ |
| 2114 | if (p_mh) |
| 2115 | ObscureCursor(); |
| 2116 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2117 | /* Don't use the keys when the dialog wants them. */ |
| 2118 | if (dialog_busy) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2119 | return eventNotHandledErr; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 2120 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2121 | if (noErr != GetEventParameter(theEvent, kEventParamTextInputSendText, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2122 | typeUnicodeText, NULL, 0, &actualSize, NULL)) |
| 2123 | return eventNotHandledErr; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2124 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2125 | text = (UniChar *)alloc(actualSize); |
| 2126 | if (!text) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2127 | return eventNotHandledErr; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2128 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2129 | err = GetEventParameter(theEvent, kEventParamTextInputSendText, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2130 | typeUnicodeText, NULL, actualSize, NULL, text); |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2131 | require_noerr(err, done); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2132 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2133 | err = GetEventParameter(theEvent, kEventParamTextInputSendKeyboardEvent, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2134 | typeEventRef, NULL, sizeof(EventRef), NULL, &keyEvent); |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2135 | require_noerr(err, done); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2136 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2137 | err = GetEventParameter(keyEvent, kEventParamKeyModifiers, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2138 | typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers); |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2139 | require_noerr(err, done); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2140 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2141 | err = GetEventParameter(keyEvent, kEventParamKeyCode, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2142 | typeUInt32, NULL, sizeof(UInt32), NULL, &key_sym); |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2143 | require_noerr(err, done); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2144 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2145 | err = GetEventParameter(keyEvent, kEventParamKeyMacCharCodes, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2146 | typeChar, NULL, sizeof(char), NULL, &charcode); |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2147 | require_noerr(err, done); |
| 2148 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2149 | #ifndef USE_CMD_KEY |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2150 | if (modifiers & cmdKey) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2151 | goto done; /* Let system handle Cmd+... */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2152 | #endif |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2153 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2154 | key_char = charcode; |
| 2155 | vimModifiers = EventModifiers2VimModifiers(modifiers); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2156 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2157 | /* Find the special key (eg., for cursor keys) */ |
| 2158 | if (actualSize <= sizeof(UniChar) && |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2159 | ((text[0] < 0x20) || (text[0] == 0x7f))) |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2160 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2161 | for (i = 0; special_keys[i].key_sym != (KeySym)0; ++i) |
| 2162 | if (special_keys[i].key_sym == key_sym) |
| 2163 | { |
| 2164 | key_char = TO_SPECIAL(special_keys[i].vim_code0, |
| 2165 | special_keys[i].vim_code1); |
| 2166 | key_char = simplify_key(key_char, |
| 2167 | (int *)&vimModifiers); |
| 2168 | isSpecial = TRUE; |
| 2169 | break; |
| 2170 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2171 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2172 | |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2173 | /* Intercept CMD-. and CTRL-c */ |
| 2174 | if (((modifiers & controlKey) && key_char == 'c') || |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2175 | ((modifiers & cmdKey) && key_char == '.')) |
| 2176 | got_int = TRUE; |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2177 | |
| 2178 | if (!isSpecial) |
| 2179 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2180 | /* remove SHIFT for keys that are already shifted, e.g., |
| 2181 | * '(' and '*' */ |
| 2182 | if (key_char < 0x100 && !isalpha(key_char) && isprint(key_char)) |
| 2183 | vimModifiers &= ~MOD_MASK_SHIFT; |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2184 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2185 | /* remove CTRL from keys that already have it */ |
| 2186 | if (key_char < 0x20) |
| 2187 | vimModifiers &= ~MOD_MASK_CTRL; |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2188 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2189 | /* don't process unicode characters here */ |
| 2190 | if (!IS_SPECIAL(key_char)) |
| 2191 | { |
| 2192 | /* Following code to simplify and consolidate vimModifiers |
| 2193 | * taken liberally from gui_w48.c */ |
| 2194 | key_char = simplify_key(key_char, (int *)&vimModifiers); |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2195 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2196 | /* Interpret META, include SHIFT, etc. */ |
| 2197 | key_char = extract_modifiers(key_char, (int *)&vimModifiers); |
| 2198 | if (key_char == CSI) |
| 2199 | key_char = K_CSI; |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2200 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2201 | if (IS_SPECIAL(key_char)) |
| 2202 | isSpecial = TRUE; |
| 2203 | } |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2204 | } |
| 2205 | |
| 2206 | if (vimModifiers) |
| 2207 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2208 | result[len++] = CSI; |
| 2209 | result[len++] = KS_MODIFIER; |
| 2210 | result[len++] = vimModifiers; |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2211 | } |
| 2212 | |
| 2213 | if (isSpecial && IS_SPECIAL(key_char)) |
| 2214 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2215 | result[len++] = CSI; |
| 2216 | result[len++] = K_SECOND(key_char); |
| 2217 | result[len++] = K_THIRD(key_char); |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2218 | } |
| 2219 | else |
| 2220 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2221 | encLen = actualSize; |
| 2222 | to = mac_utf16_to_enc(text, actualSize, &encLen); |
| 2223 | if (to) |
| 2224 | { |
| 2225 | /* This is basically add_to_input_buf_csi() */ |
| 2226 | for (i = 0; i < encLen && len < (INLINE_KEY_BUFFER_SIZE-1); ++i) |
| 2227 | { |
| 2228 | result[len++] = to[i]; |
| 2229 | if (to[i] == CSI) |
| 2230 | { |
| 2231 | result[len++] = KS_EXTRA; |
| 2232 | result[len++] = (int)KE_CSI; |
| 2233 | } |
| 2234 | } |
| 2235 | vim_free(to); |
| 2236 | } |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2237 | } |
| 2238 | |
| 2239 | add_to_input_buf(result, len); |
| 2240 | err = noErr; |
| 2241 | |
| 2242 | done: |
| 2243 | vim_free(text); |
| 2244 | if (err == noErr) |
| 2245 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2246 | /* Fake event to wake up WNE (required to get |
| 2247 | * key repeat working */ |
| 2248 | PostEvent(keyUp, 0); |
| 2249 | return noErr; |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 2250 | } |
| 2251 | |
| 2252 | return eventNotHandledErr; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2253 | } |
| 2254 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2255 | void |
| 2256 | gui_mac_doKeyEvent(EventRecord *theEvent) |
| 2257 | { |
| 2258 | /* TODO: add support for COMMAND KEY */ |
| 2259 | long menu; |
| 2260 | unsigned char string[20]; |
| 2261 | short num, i; |
| 2262 | short len = 0; |
| 2263 | KeySym key_sym; |
| 2264 | int key_char; |
| 2265 | int modifiers; |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2266 | int simplify = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2267 | |
| 2268 | /* Mask the mouse (as per user setting) */ |
| 2269 | if (p_mh) |
| 2270 | ObscureCursor(); |
| 2271 | |
| 2272 | /* Get the key code and it's ASCII representation */ |
| 2273 | key_sym = ((theEvent->message & keyCodeMask) >> 8); |
| 2274 | key_char = theEvent->message & charCodeMask; |
| 2275 | num = 1; |
| 2276 | |
| 2277 | /* Intercept CTRL-C */ |
| 2278 | if (theEvent->modifiers & controlKey) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2279 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2280 | if (key_char == Ctrl_C && ctrl_c_interrupts) |
| 2281 | got_int = TRUE; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2282 | else if ((theEvent->modifiers & ~(controlKey|shiftKey)) == 0 |
| 2283 | && (key_char == '2' || key_char == '6')) |
| 2284 | { |
| 2285 | /* CTRL-^ and CTRL-@ don't work in the normal way. */ |
| 2286 | if (key_char == '2') |
| 2287 | key_char = Ctrl_AT; |
| 2288 | else |
| 2289 | key_char = Ctrl_HAT; |
| 2290 | theEvent->modifiers = 0; |
| 2291 | } |
| 2292 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2293 | |
| 2294 | /* Intercept CMD-. */ |
| 2295 | if (theEvent->modifiers & cmdKey) |
| 2296 | if (key_char == '.') |
| 2297 | got_int = TRUE; |
| 2298 | |
| 2299 | /* Handle command key as per menu */ |
| 2300 | /* TODO: should override be allowed? Require YAO or could use 'winaltkey' */ |
| 2301 | if (theEvent->modifiers & cmdKey) |
| 2302 | /* Only accept CMD alone or with CAPLOCKS and the mouse button. |
| 2303 | * Why the mouse button? */ |
| 2304 | if ((theEvent->modifiers & (~(cmdKey | btnState | alphaLock))) == 0) |
| 2305 | { |
| 2306 | menu = MenuKey(key_char); |
| 2307 | if (HiWord(menu)) |
| 2308 | { |
| 2309 | gui_mac_handle_menu(menu); |
| 2310 | return; |
| 2311 | } |
| 2312 | } |
| 2313 | |
| 2314 | /* Convert the modifiers */ |
| 2315 | modifiers = EventModifiers2VimModifiers(theEvent->modifiers); |
| 2316 | |
| 2317 | |
| 2318 | /* Handle special keys. */ |
| 2319 | #if 0 |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2320 | /* Why has this been removed? */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2321 | if (!(theEvent->modifiers & (cmdKey | controlKey | rightControlKey))) |
| 2322 | #endif |
| 2323 | { |
| 2324 | /* Find the special key (for non-printable keyt_char) */ |
| 2325 | if ((key_char < 0x20) || (key_char == 0x7f)) |
| 2326 | for (i = 0; special_keys[i].key_sym != (KeySym)0; i++) |
| 2327 | if (special_keys[i].key_sym == key_sym) |
| 2328 | { |
| 2329 | # if 0 |
| 2330 | /* We currently don't have not so special key */ |
| 2331 | if (special_keys[i].vim_code1 == NUL) |
| 2332 | key_char = special_keys[i].vim_code0; |
| 2333 | else |
| 2334 | # endif |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2335 | key_char = TO_SPECIAL(special_keys[i].vim_code0, |
| 2336 | special_keys[i].vim_code1); |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2337 | simplify = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2338 | break; |
| 2339 | } |
| 2340 | } |
| 2341 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2342 | /* For some keys the modifier is included in the char itself. */ |
| 2343 | if (simplify || key_char == TAB || key_char == ' ') |
| 2344 | key_char = simplify_key(key_char, &modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2345 | |
| 2346 | /* Add the modifier to the input bu if needed */ |
| 2347 | /* Do not want SHIFT-A or CTRL-A with modifier */ |
| 2348 | if (!IS_SPECIAL(key_char) |
| 2349 | && key_sym != vk_Space |
| 2350 | && key_sym != vk_Tab |
| 2351 | && key_sym != vk_Return |
| 2352 | && key_sym != vk_Enter |
| 2353 | && key_sym != vk_Esc) |
| 2354 | { |
| 2355 | #if 1 |
| 2356 | /* Clear modifiers when only one modifier is set */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2357 | if ((modifiers == MOD_MASK_SHIFT) |
| 2358 | || (modifiers == MOD_MASK_CTRL) |
| 2359 | || (modifiers == MOD_MASK_ALT)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2360 | modifiers = 0; |
| 2361 | #else |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2362 | if (modifiers & MOD_MASK_CTRL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2363 | modifiers = modifiers & ~MOD_MASK_CTRL; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2364 | if (modifiers & MOD_MASK_ALT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2365 | modifiers = modifiers & ~MOD_MASK_ALT; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2366 | if (modifiers & MOD_MASK_SHIFT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2367 | modifiers = modifiers & ~MOD_MASK_SHIFT; |
| 2368 | #endif |
| 2369 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2370 | if (modifiers) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2371 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2372 | string[len++] = CSI; |
| 2373 | string[len++] = KS_MODIFIER; |
| 2374 | string[len++] = modifiers; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2375 | } |
| 2376 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2377 | if (IS_SPECIAL(key_char)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2378 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2379 | string[len++] = CSI; |
| 2380 | string[len++] = K_SECOND(key_char); |
| 2381 | string[len++] = K_THIRD(key_char); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2382 | } |
| 2383 | else |
| 2384 | { |
| 2385 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2386 | /* Convert characters when needed (e.g., from MacRoman to latin1). |
| 2387 | * This doesn't work for the NUL byte. */ |
| 2388 | if (input_conv.vc_type != CONV_NONE && key_char > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2389 | { |
| 2390 | char_u from[2], *to; |
| 2391 | int l; |
| 2392 | |
| 2393 | from[0] = key_char; |
| 2394 | from[1] = NUL; |
| 2395 | l = 1; |
| 2396 | to = string_convert(&input_conv, from, &l); |
| 2397 | if (to != NULL) |
| 2398 | { |
| 2399 | for (i = 0; i < l && len < 19; i++) |
| 2400 | { |
| 2401 | if (to[i] == CSI) |
| 2402 | { |
| 2403 | string[len++] = KS_EXTRA; |
| 2404 | string[len++] = KE_CSI; |
| 2405 | } |
| 2406 | else |
| 2407 | string[len++] = to[i]; |
| 2408 | } |
| 2409 | vim_free(to); |
| 2410 | } |
| 2411 | else |
| 2412 | string[len++] = key_char; |
| 2413 | } |
| 2414 | else |
| 2415 | #endif |
| 2416 | string[len++] = key_char; |
| 2417 | } |
| 2418 | |
| 2419 | if (len == 1 && string[0] == CSI) |
| 2420 | { |
| 2421 | /* Turn CSI into K_CSI. */ |
| 2422 | string[ len++ ] = KS_EXTRA; |
| 2423 | string[ len++ ] = KE_CSI; |
| 2424 | } |
| 2425 | |
| 2426 | add_to_input_buf(string, len); |
| 2427 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2428 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2429 | |
| 2430 | /* |
| 2431 | * Handle MouseClick |
| 2432 | */ |
| 2433 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2434 | gui_mac_doMouseDownEvent(EventRecord *theEvent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2435 | { |
| 2436 | short thePart; |
| 2437 | WindowPtr whichWindow; |
| 2438 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2439 | thePart = FindWindow(theEvent->where, &whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2440 | |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 2441 | #ifdef FEAT_GUI_TABLINE |
| 2442 | /* prevent that the vim window size changes if it's activated by a |
| 2443 | click into the tab pane */ |
| 2444 | if (whichWindow == drawer) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2445 | return; |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 2446 | #endif |
| 2447 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2448 | switch (thePart) |
| 2449 | { |
| 2450 | case (inDesk): |
| 2451 | /* TODO: what to do? */ |
| 2452 | break; |
| 2453 | |
| 2454 | case (inMenuBar): |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2455 | gui_mac_handle_menu(MenuSelect(theEvent->where)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2456 | break; |
| 2457 | |
| 2458 | case (inContent): |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2459 | gui_mac_doInContentClick(theEvent, whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2460 | break; |
| 2461 | |
| 2462 | case (inDrag): |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2463 | gui_mac_doInDragClick(theEvent->where, whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2464 | break; |
| 2465 | |
| 2466 | case (inGrow): |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2467 | gui_mac_doInGrowClick(theEvent->where, whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2468 | break; |
| 2469 | |
| 2470 | case (inGoAway): |
| 2471 | if (TrackGoAway(whichWindow, theEvent->where)) |
| 2472 | gui_shell_closed(); |
| 2473 | break; |
| 2474 | |
| 2475 | case (inZoomIn): |
| 2476 | case (inZoomOut): |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2477 | gui_mac_doInZoomClick(theEvent, whichWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2478 | break; |
| 2479 | } |
| 2480 | } |
| 2481 | |
| 2482 | /* |
| 2483 | * Handle MouseMoved |
| 2484 | * [this event is a moving in and out of a region] |
| 2485 | */ |
| 2486 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2487 | gui_mac_doMouseMovedEvent(EventRecord *event) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2488 | { |
| 2489 | Point thePoint; |
| 2490 | int_u vimModifiers; |
| 2491 | |
| 2492 | thePoint = event->where; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2493 | GlobalToLocal(&thePoint); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2494 | vimModifiers = EventModifiers2VimMouseModifiers(event->modifiers); |
| 2495 | |
| 2496 | if (!Button()) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2497 | gui_mouse_moved(thePoint.h, thePoint.v); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2498 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2499 | if (!clickIsPopup) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2500 | gui_send_mouse_event(MOUSE_DRAG, thePoint.h, |
| 2501 | thePoint.v, FALSE, vimModifiers); |
| 2502 | |
| 2503 | /* Reset the region from which we move in and out */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2504 | SetRect(&dragRect, FILL_X(X_2_COL(thePoint.h)), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2505 | FILL_Y(Y_2_ROW(thePoint.v)), |
| 2506 | FILL_X(X_2_COL(thePoint.h)+1), |
| 2507 | FILL_Y(Y_2_ROW(thePoint.v)+1)); |
| 2508 | |
| 2509 | if (dragRectEnbl) |
| 2510 | dragRectControl = kCreateRect; |
| 2511 | |
| 2512 | } |
| 2513 | |
| 2514 | /* |
| 2515 | * Handle the mouse release |
| 2516 | */ |
| 2517 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2518 | gui_mac_doMouseUpEvent(EventRecord *theEvent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2519 | { |
| 2520 | Point thePoint; |
| 2521 | int_u vimModifiers; |
| 2522 | |
| 2523 | /* TODO: Properly convert the Contextual menu mouse-up */ |
| 2524 | /* Potential source of the double menu */ |
| 2525 | lastMouseTick = theEvent->when; |
| 2526 | dragRectEnbl = FALSE; |
| 2527 | dragRectControl = kCreateEmpty; |
| 2528 | thePoint = theEvent->where; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2529 | GlobalToLocal(&thePoint); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2530 | |
| 2531 | vimModifiers = EventModifiers2VimMouseModifiers(theEvent->modifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2532 | if (clickIsPopup) |
| 2533 | { |
| 2534 | vimModifiers &= ~MOUSE_CTRL; |
| 2535 | clickIsPopup = FALSE; |
| 2536 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2537 | gui_send_mouse_event(MOUSE_RELEASE, thePoint.h, thePoint.v, FALSE, vimModifiers); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2538 | } |
| 2539 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2540 | static pascal OSStatus |
| 2541 | gui_mac_mouse_wheel(EventHandlerCallRef nextHandler, EventRef theEvent, |
| 2542 | void *data) |
| 2543 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2544 | Point point; |
| 2545 | Rect bounds; |
| 2546 | UInt32 mod; |
| 2547 | SInt32 delta; |
| 2548 | int_u vim_mod; |
Bram Moolenaar | 621e2fd | 2006-08-22 19:36:17 +0000 | [diff] [blame] | 2549 | EventMouseWheelAxis axis; |
| 2550 | |
| 2551 | if (noErr == GetEventParameter(theEvent, kEventParamMouseWheelAxis, |
| 2552 | typeMouseWheelAxis, NULL, sizeof(axis), NULL, &axis) |
| 2553 | && axis != kEventMouseWheelAxisY) |
| 2554 | goto bail; /* Vim only does up-down scrolling */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2555 | |
| 2556 | if (noErr != GetEventParameter(theEvent, kEventParamMouseWheelDelta, |
| 2557 | typeSInt32, NULL, sizeof(SInt32), NULL, &delta)) |
| 2558 | goto bail; |
| 2559 | if (noErr != GetEventParameter(theEvent, kEventParamMouseLocation, |
| 2560 | typeQDPoint, NULL, sizeof(Point), NULL, &point)) |
| 2561 | goto bail; |
| 2562 | if (noErr != GetEventParameter(theEvent, kEventParamKeyModifiers, |
| 2563 | typeUInt32, NULL, sizeof(UInt32), NULL, &mod)) |
| 2564 | goto bail; |
| 2565 | |
| 2566 | vim_mod = 0; |
| 2567 | if (mod & shiftKey) |
| 2568 | vim_mod |= MOUSE_SHIFT; |
| 2569 | if (mod & controlKey) |
| 2570 | vim_mod |= MOUSE_CTRL; |
| 2571 | if (mod & optionKey) |
| 2572 | vim_mod |= MOUSE_ALT; |
| 2573 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2574 | if (noErr == GetWindowBounds(gui.VimWindow, kWindowContentRgn, &bounds)) |
| 2575 | { |
| 2576 | point.h -= bounds.left; |
| 2577 | point.v -= bounds.top; |
| 2578 | } |
| 2579 | |
| 2580 | gui_send_mouse_event((delta > 0) ? MOUSE_4 : MOUSE_5, |
| 2581 | point.h, point.v, FALSE, vim_mod); |
| 2582 | |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 2583 | /* post a bogus event to wake up WaitNextEvent */ |
| 2584 | PostEvent(keyUp, 0); |
| 2585 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2586 | return noErr; |
| 2587 | |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 2588 | bail: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2589 | /* |
| 2590 | * when we fail give any additional callback handler a chance to perform |
| 2591 | * it's actions |
| 2592 | */ |
| 2593 | return CallNextEventHandler(nextHandler, theEvent); |
| 2594 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2595 | |
Bram Moolenaar | e00289d | 2010-08-14 21:56:42 +0200 | [diff] [blame] | 2596 | void |
| 2597 | gui_mch_mousehide(int hide) |
| 2598 | { |
| 2599 | /* TODO */ |
| 2600 | } |
| 2601 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2602 | #if 0 |
| 2603 | |
| 2604 | /* |
| 2605 | * This would be the normal way of invoking the contextual menu |
| 2606 | * but the Vim API doesn't seem to a support a request to get |
| 2607 | * the menu that we should display |
| 2608 | */ |
| 2609 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 2610 | gui_mac_handle_contextual_menu(EventRecord *event) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2611 | { |
| 2612 | /* |
| 2613 | * Clone PopUp to use menu |
| 2614 | * Create a object descriptor for the current selection |
| 2615 | * Call the procedure |
| 2616 | */ |
| 2617 | |
| 2618 | // Call to Handle Popup |
| 2619 | OSStatus status = ContextualMenuSelect(CntxMenu, event->where, false, kCMHelpItemNoHelp, "", NULL, &CntxType, &CntxMenuID, &CntxMenuItem); |
| 2620 | |
| 2621 | if (status != noErr) |
| 2622 | return; |
| 2623 | |
| 2624 | if (CntxType == kCMMenuItemSelected) |
| 2625 | { |
| 2626 | /* Handle the menu CntxMenuID, CntxMenuItem */ |
| 2627 | /* The submenu can be handle directly by gui_mac_handle_menu */ |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 2628 | /* But what about the current menu, is the many changed by ContextualMenuSelect */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2629 | gui_mac_handle_menu((CntxMenuID << 16) + CntxMenuItem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2630 | } |
| 2631 | else if (CntxMenuID == kCMShowHelpSelected) |
| 2632 | { |
| 2633 | /* Should come up with the help */ |
| 2634 | } |
| 2635 | |
| 2636 | } |
| 2637 | #endif |
| 2638 | |
| 2639 | /* |
| 2640 | * Handle menubar selection |
| 2641 | */ |
| 2642 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2643 | gui_mac_handle_menu(long menuChoice) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2644 | { |
| 2645 | short menu = HiWord(menuChoice); |
| 2646 | short item = LoWord(menuChoice); |
| 2647 | vimmenu_T *theVimMenu = root_menu; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2648 | |
| 2649 | if (menu == 256) /* TODO: use constant or gui.xyz */ |
| 2650 | { |
| 2651 | if (item == 1) |
| 2652 | gui_mch_beep(); /* TODO: Popup dialog or do :intro */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2653 | } |
| 2654 | else if (item != 0) |
| 2655 | { |
| 2656 | theVimMenu = gui_mac_get_vim_menu(menu, item, root_menu); |
| 2657 | |
| 2658 | if (theVimMenu) |
| 2659 | gui_menu_cb(theVimMenu); |
| 2660 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2661 | HiliteMenu(0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2662 | } |
| 2663 | |
| 2664 | /* |
| 2665 | * Dispatch the event to proper handler |
| 2666 | */ |
| 2667 | |
| 2668 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2669 | gui_mac_handle_event(EventRecord *event) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2670 | { |
| 2671 | OSErr error; |
| 2672 | |
| 2673 | /* Handle contextual menu right now (if needed) */ |
Bram Moolenaar | e02d7b2 | 2007-06-19 14:29:43 +0000 | [diff] [blame] | 2674 | if (IsShowContextualMenuClick(event)) |
| 2675 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2676 | # if 0 |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2677 | gui_mac_handle_contextual_menu(event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2678 | # else |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2679 | gui_mac_doMouseDownEvent(event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2680 | # endif |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 2681 | return; |
Bram Moolenaar | e02d7b2 | 2007-06-19 14:29:43 +0000 | [diff] [blame] | 2682 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2683 | |
| 2684 | /* Handle normal event */ |
| 2685 | switch (event->what) |
| 2686 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2687 | #ifndef USE_CARBONKEYHANDLER |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2688 | case (keyDown): |
| 2689 | case (autoKey): |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2690 | gui_mac_doKeyEvent(event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2691 | break; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2692 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2693 | case (keyUp): |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 2694 | /* We don't care about when the key is released */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2695 | break; |
| 2696 | |
| 2697 | case (mouseDown): |
| 2698 | gui_mac_doMouseDownEvent(event); |
| 2699 | break; |
| 2700 | |
| 2701 | case (mouseUp): |
| 2702 | gui_mac_doMouseUpEvent(event); |
| 2703 | break; |
| 2704 | |
| 2705 | case (updateEvt): |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2706 | gui_mac_doUpdateEvent(event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2707 | break; |
| 2708 | |
| 2709 | case (diskEvt): |
| 2710 | /* We don't need special handling for disk insertion */ |
| 2711 | break; |
| 2712 | |
| 2713 | case (activateEvt): |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2714 | gui_mac_doActivateEvent(event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2715 | break; |
| 2716 | |
| 2717 | case (osEvt): |
| 2718 | switch ((event->message >> 24) & 0xFF) |
| 2719 | { |
| 2720 | case (0xFA): /* mouseMovedMessage */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2721 | gui_mac_doMouseMovedEvent(event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2722 | break; |
| 2723 | case (0x01): /* suspendResumeMessage */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2724 | gui_mac_doSuspendEvent(event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2725 | break; |
| 2726 | } |
| 2727 | break; |
| 2728 | |
| 2729 | #ifdef USE_AEVENT |
| 2730 | case (kHighLevelEvent): |
| 2731 | /* Someone's talking to us, through AppleEvents */ |
| 2732 | error = AEProcessAppleEvent(event); /* TODO: Error Handling */ |
| 2733 | break; |
| 2734 | #endif |
| 2735 | } |
| 2736 | } |
| 2737 | |
| 2738 | /* |
| 2739 | * ------------------------------------------------------------ |
| 2740 | * Unknown Stuff |
| 2741 | * ------------------------------------------------------------ |
| 2742 | */ |
| 2743 | |
| 2744 | |
| 2745 | GuiFont |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2746 | gui_mac_find_font(char_u *font_name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2747 | { |
| 2748 | char_u c; |
| 2749 | char_u *p; |
| 2750 | char_u pFontName[256]; |
| 2751 | Str255 systemFontname; |
| 2752 | short font_id; |
| 2753 | short size=9; |
| 2754 | GuiFont font; |
| 2755 | #if 0 |
| 2756 | char_u *fontNamePtr; |
| 2757 | #endif |
| 2758 | |
| 2759 | for (p = font_name; ((*p != 0) && (*p != ':')); p++) |
| 2760 | ; |
| 2761 | |
| 2762 | c = *p; |
| 2763 | *p = 0; |
| 2764 | |
| 2765 | #if 1 |
| 2766 | STRCPY(&pFontName[1], font_name); |
| 2767 | pFontName[0] = STRLEN(font_name); |
| 2768 | *p = c; |
| 2769 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2770 | /* Get the font name, minus the style suffix (:h, etc) */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2771 | char_u fontName[256]; |
| 2772 | char_u *styleStart = vim_strchr(font_name, ':'); |
| 2773 | size_t fontNameLen = styleStart ? styleStart - font_name : STRLEN(fontName); |
| 2774 | vim_strncpy(fontName, font_name, fontNameLen); |
| 2775 | |
| 2776 | ATSUFontID fontRef; |
| 2777 | FMFontStyle fontStyle; |
| 2778 | font_id = 0; |
| 2779 | |
| 2780 | if (ATSUFindFontFromName(&pFontName[1], pFontName[0], kFontFullName, |
| 2781 | kFontMacintoshPlatform, kFontNoScriptCode, kFontNoLanguageCode, |
| 2782 | &fontRef) == noErr) |
| 2783 | { |
| 2784 | if (FMGetFontFamilyInstanceFromFont(fontRef, &font_id, &fontStyle) != noErr) |
| 2785 | font_id = 0; |
| 2786 | } |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 2787 | |
| 2788 | if (font_id == 0) |
| 2789 | { |
| 2790 | /* |
| 2791 | * Try again, this time replacing underscores in the font name |
| 2792 | * with spaces (:set guifont allows the two to be used |
| 2793 | * interchangeably; the Font Manager doesn't). |
| 2794 | */ |
| 2795 | int i, changed = FALSE; |
| 2796 | |
| 2797 | for (i = pFontName[0]; i > 0; --i) |
| 2798 | { |
| 2799 | if (pFontName[i] == '_') |
| 2800 | { |
| 2801 | pFontName[i] = ' '; |
| 2802 | changed = TRUE; |
| 2803 | } |
| 2804 | } |
| 2805 | if (changed) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2806 | if (ATSUFindFontFromName(&pFontName[1], pFontName[0], |
| 2807 | kFontFullName, kFontNoPlatformCode, kFontNoScriptCode, |
| 2808 | kFontNoLanguageCode, &fontRef) == noErr) |
| 2809 | { |
| 2810 | if (FMGetFontFamilyInstanceFromFont(fontRef, &font_id, &fontStyle) != noErr) |
| 2811 | font_id = 0; |
| 2812 | } |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 2813 | } |
| 2814 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2815 | #else |
| 2816 | /* name = C2Pascal_save(menu->dname); */ |
| 2817 | fontNamePtr = C2Pascal_save_and_remove_backslash(font_name); |
| 2818 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2819 | GetFNum(fontNamePtr, &font_id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2820 | #endif |
| 2821 | |
| 2822 | |
| 2823 | if (font_id == 0) |
| 2824 | { |
| 2825 | /* Oups, the system font was it the one the user want */ |
| 2826 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2827 | if (FMGetFontFamilyName(systemFont, systemFontname) != noErr) |
| 2828 | return NOFONT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2829 | if (!EqualString(pFontName, systemFontname, false, false)) |
| 2830 | return NOFONT; |
| 2831 | } |
| 2832 | if (*p == ':') |
| 2833 | { |
| 2834 | p++; |
| 2835 | /* Set the values found after ':' */ |
| 2836 | while (*p) |
| 2837 | { |
| 2838 | switch (*p++) |
| 2839 | { |
| 2840 | case 'h': |
| 2841 | size = points_to_pixels(p, &p, TRUE); |
| 2842 | break; |
| 2843 | /* |
| 2844 | * TODO: Maybe accept width and styles |
| 2845 | */ |
| 2846 | } |
| 2847 | while (*p == ':') |
| 2848 | p++; |
| 2849 | } |
| 2850 | } |
| 2851 | |
| 2852 | if (size < 1) |
| 2853 | size = 1; /* Avoid having a size of 0 with system font */ |
| 2854 | |
| 2855 | font = (size << 16) + ((long) font_id & 0xFFFF); |
| 2856 | |
| 2857 | return font; |
| 2858 | } |
| 2859 | |
| 2860 | /* |
| 2861 | * ------------------------------------------------------------ |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 2862 | * GUI_MCH functionality |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2863 | * ------------------------------------------------------------ |
| 2864 | */ |
| 2865 | |
| 2866 | /* |
| 2867 | * Parse the GUI related command-line arguments. Any arguments used are |
| 2868 | * deleted from argv, and *argc is decremented accordingly. This is called |
| 2869 | * when vim is started, whether or not the GUI has been started. |
| 2870 | */ |
| 2871 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2872 | gui_mch_prepare(int *argc, char **argv) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2873 | { |
| 2874 | /* TODO: Move most of this stuff toward gui_mch_init */ |
| 2875 | #ifdef USE_EXE_NAME |
| 2876 | FSSpec applDir; |
| 2877 | # ifndef USE_FIND_BUNDLE_PATH |
| 2878 | short applVRefNum; |
| 2879 | long applDirID; |
| 2880 | Str255 volName; |
| 2881 | # else |
| 2882 | ProcessSerialNumber psn; |
| 2883 | FSRef applFSRef; |
| 2884 | # endif |
| 2885 | #endif |
| 2886 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2887 | #if 0 |
| 2888 | InitCursor(); |
| 2889 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2890 | RegisterAppearanceClient(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2891 | |
| 2892 | #ifdef USE_AEVENT |
| 2893 | (void) InstallAEHandlers(); |
| 2894 | #endif |
| 2895 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2896 | pomme = NewMenu(256, "\p\024"); /* 0x14= = Apple Menu */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2897 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2898 | AppendMenu(pomme, "\pAbout VIM"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2899 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2900 | InsertMenu(pomme, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2901 | |
| 2902 | DrawMenuBar(); |
| 2903 | |
| 2904 | |
| 2905 | #ifndef USE_OFFSETED_WINDOW |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2906 | SetRect(&windRect, 10, 48, 10+80*7 + 16, 48+24*11); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2907 | #else |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2908 | SetRect(&windRect, 300, 40, 300+80*7 + 16, 40+24*11); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2909 | #endif |
| 2910 | |
| 2911 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2912 | CreateNewWindow(kDocumentWindowClass, |
| 2913 | kWindowResizableAttribute | kWindowCollapseBoxAttribute, |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2914 | &windRect, &gui.VimWindow); |
| 2915 | SetPortWindowPort(gui.VimWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2916 | |
| 2917 | gui.char_width = 7; |
| 2918 | gui.char_height = 11; |
| 2919 | gui.char_ascent = 6; |
| 2920 | gui.num_rows = 24; |
| 2921 | gui.num_cols = 80; |
| 2922 | gui.in_focus = TRUE; /* For the moment -> syn. of front application */ |
| 2923 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2924 | gScrollAction = NewControlActionUPP(gui_mac_scroll_action); |
| 2925 | gScrollDrag = NewControlActionUPP(gui_mac_drag_thumb); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2926 | |
| 2927 | dragRectEnbl = FALSE; |
| 2928 | dragRgn = NULL; |
| 2929 | dragRectControl = kCreateEmpty; |
| 2930 | cursorRgn = NewRgn(); |
| 2931 | #endif |
| 2932 | #ifdef USE_EXE_NAME |
| 2933 | # ifndef USE_FIND_BUNDLE_PATH |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2934 | HGetVol(volName, &applVRefNum, &applDirID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2935 | /* TN2015: mention a possible bad VRefNum */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2936 | FSMakeFSSpec(applVRefNum, applDirID, "\p", &applDir); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2937 | # else |
| 2938 | /* OSErr GetApplicationBundleFSSpec(FSSpecPtr theFSSpecPtr) |
| 2939 | * of TN2015 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2940 | */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2941 | (void)GetCurrentProcess(&psn); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2942 | /* if (err != noErr) return err; */ |
| 2943 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2944 | (void)GetProcessBundleLocation(&psn, &applFSRef); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2945 | /* if (err != noErr) return err; */ |
| 2946 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2947 | (void)FSGetCatalogInfo(&applFSRef, kFSCatInfoNone, NULL, NULL, &applDir, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2948 | |
| 2949 | /* This technic return NIL when we disallow_gui */ |
| 2950 | # endif |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 2951 | exe_name = FullPathFromFSSpec_save(applDir); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2952 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2953 | } |
| 2954 | |
| 2955 | #ifndef ALWAYS_USE_GUI |
| 2956 | /* |
| 2957 | * Check if the GUI can be started. Called before gvimrc is sourced. |
| 2958 | * Return OK or FAIL. |
| 2959 | */ |
| 2960 | int |
| 2961 | gui_mch_init_check(void) |
| 2962 | { |
| 2963 | /* TODO: For MacOS X find a way to return FAIL, if the user logged in |
| 2964 | * using the >console |
| 2965 | */ |
| 2966 | if (disallow_gui) /* see main.c for reason to disallow */ |
| 2967 | return FAIL; |
| 2968 | return OK; |
| 2969 | } |
| 2970 | #endif |
| 2971 | |
| 2972 | static OSErr |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 2973 | receiveHandler(WindowRef theWindow, void *handlerRefCon, DragRef theDrag) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2974 | { |
| 2975 | int x, y; |
| 2976 | int_u modifiers; |
| 2977 | char_u **fnames = NULL; |
| 2978 | int count; |
| 2979 | int i, j; |
| 2980 | |
| 2981 | /* Get drop position, modifiers and count of items */ |
| 2982 | { |
| 2983 | Point point; |
| 2984 | SInt16 mouseUpModifiers; |
| 2985 | UInt16 countItem; |
| 2986 | |
| 2987 | GetDragMouse(theDrag, &point, NULL); |
| 2988 | GlobalToLocal(&point); |
| 2989 | x = point.h; |
| 2990 | y = point.v; |
| 2991 | GetDragModifiers(theDrag, NULL, NULL, &mouseUpModifiers); |
| 2992 | modifiers = EventModifiers2VimMouseModifiers(mouseUpModifiers); |
| 2993 | CountDragItems(theDrag, &countItem); |
| 2994 | count = countItem; |
| 2995 | } |
| 2996 | |
| 2997 | fnames = (char_u **)alloc(count * sizeof(char_u *)); |
| 2998 | if (fnames == NULL) |
| 2999 | return dragNotAcceptedErr; |
| 3000 | |
| 3001 | /* Get file names dropped */ |
| 3002 | for (i = j = 0; i < count; ++i) |
| 3003 | { |
| 3004 | DragItemRef item; |
| 3005 | OSErr err; |
| 3006 | Size size; |
| 3007 | FlavorType type = flavorTypeHFS; |
| 3008 | HFSFlavor hfsFlavor; |
| 3009 | |
| 3010 | fnames[i] = NULL; |
| 3011 | GetDragItemReferenceNumber(theDrag, i + 1, &item); |
| 3012 | err = GetFlavorDataSize(theDrag, item, type, &size); |
| 3013 | if (err != noErr || size > sizeof(hfsFlavor)) |
| 3014 | continue; |
| 3015 | err = GetFlavorData(theDrag, item, type, &hfsFlavor, &size, 0); |
| 3016 | if (err != noErr) |
| 3017 | continue; |
| 3018 | fnames[j++] = FullPathFromFSSpec_save(hfsFlavor.fileSpec); |
| 3019 | } |
| 3020 | count = j; |
| 3021 | |
| 3022 | gui_handle_drop(x, y, modifiers, fnames, count); |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3023 | |
| 3024 | /* Fake mouse event to wake from stall */ |
| 3025 | PostEvent(mouseUp, 0); |
| 3026 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3027 | return noErr; |
| 3028 | } |
| 3029 | |
| 3030 | /* |
| 3031 | * Initialise the GUI. Create all the windows, set up all the call-backs |
| 3032 | * etc. |
| 3033 | */ |
| 3034 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3035 | gui_mch_init(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3036 | { |
| 3037 | /* TODO: Move most of this stuff toward gui_mch_init */ |
Bram Moolenaar | 39858af | 2008-03-12 20:48:13 +0000 | [diff] [blame] | 3038 | Rect windRect; |
| 3039 | MenuHandle pomme; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3040 | EventHandlerRef mouseWheelHandlerRef; |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3041 | EventTypeSpec eventTypeSpec; |
Bram Moolenaar | 39858af | 2008-03-12 20:48:13 +0000 | [diff] [blame] | 3042 | ControlRef rootControl; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3043 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3044 | if (Gestalt(gestaltSystemVersion, &gMacSystemVersion) != noErr) |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3045 | gMacSystemVersion = 0x1000; /* TODO: Default to minimum sensible value */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3046 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3047 | #if 1 |
| 3048 | InitCursor(); |
| 3049 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3050 | RegisterAppearanceClient(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3051 | |
| 3052 | #ifdef USE_AEVENT |
| 3053 | (void) InstallAEHandlers(); |
| 3054 | #endif |
| 3055 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3056 | pomme = NewMenu(256, "\p\024"); /* 0x14= = Apple Menu */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3057 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3058 | AppendMenu(pomme, "\pAbout VIM"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3059 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3060 | InsertMenu(pomme, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3061 | |
| 3062 | DrawMenuBar(); |
| 3063 | |
| 3064 | |
| 3065 | #ifndef USE_OFFSETED_WINDOW |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3066 | SetRect(&windRect, 10, 48, 10+80*7 + 16, 48+24*11); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3067 | #else |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3068 | SetRect(&windRect, 300, 40, 300+80*7 + 16, 40+24*11); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3069 | #endif |
| 3070 | |
| 3071 | gui.VimWindow = NewCWindow(nil, &windRect, "\pgVim on Macintosh", true, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3072 | zoomDocProc, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3073 | (WindowPtr)-1L, true, 0); |
Bram Moolenaar | e02d7b2 | 2007-06-19 14:29:43 +0000 | [diff] [blame] | 3074 | CreateRootControl(gui.VimWindow, &rootControl); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3075 | InstallReceiveHandler((DragReceiveHandlerUPP)receiveHandler, |
| 3076 | gui.VimWindow, NULL); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3077 | SetPortWindowPort(gui.VimWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3078 | |
| 3079 | gui.char_width = 7; |
| 3080 | gui.char_height = 11; |
| 3081 | gui.char_ascent = 6; |
| 3082 | gui.num_rows = 24; |
| 3083 | gui.num_cols = 80; |
| 3084 | gui.in_focus = TRUE; /* For the moment -> syn. of front application */ |
| 3085 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3086 | gScrollAction = NewControlActionUPP(gui_mac_scroll_action); |
| 3087 | gScrollDrag = NewControlActionUPP(gui_mac_drag_thumb); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3088 | |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3089 | /* Install Carbon event callbacks. */ |
| 3090 | (void)InstallFontPanelHandler(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3091 | |
| 3092 | dragRectEnbl = FALSE; |
| 3093 | dragRgn = NULL; |
| 3094 | dragRectControl = kCreateEmpty; |
| 3095 | cursorRgn = NewRgn(); |
| 3096 | #endif |
| 3097 | /* Display any pending error messages */ |
| 3098 | display_errors(); |
| 3099 | |
| 3100 | /* Get background/foreground colors from system */ |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 3101 | /* TODO: do the appropriate call to get real defaults */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3102 | gui.norm_pixel = 0x00000000; |
| 3103 | gui.back_pixel = 0x00FFFFFF; |
| 3104 | |
| 3105 | /* Get the colors from the "Normal" group (set in syntax.c or in a vimrc |
| 3106 | * file). */ |
| 3107 | set_normal_colors(); |
| 3108 | |
| 3109 | /* |
| 3110 | * Check that none of the colors are the same as the background color. |
| 3111 | * Then store the current values as the defaults. |
| 3112 | */ |
| 3113 | gui_check_colors(); |
| 3114 | gui.def_norm_pixel = gui.norm_pixel; |
| 3115 | gui.def_back_pixel = gui.back_pixel; |
| 3116 | |
| 3117 | /* Get the colors for the highlight groups (gui_check_colors() might have |
| 3118 | * changed them) */ |
| 3119 | highlight_gui_started(); |
| 3120 | |
| 3121 | /* |
| 3122 | * Setting the gui constants |
| 3123 | */ |
| 3124 | #ifdef FEAT_MENU |
| 3125 | gui.menu_height = 0; |
| 3126 | #endif |
| 3127 | gui.scrollbar_height = gui.scrollbar_width = 15; /* cheat 1 overlap */ |
| 3128 | gui.border_offset = gui.border_width = 2; |
| 3129 | |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 3130 | /* If Quartz-style text anti aliasing is available (see |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3131 | gui_mch_draw_string() below), enable it for all font sizes. */ |
| 3132 | vim_setenv((char_u *)"QDTEXT_MINSIZE", (char_u *)"1"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3133 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3134 | eventTypeSpec.eventClass = kEventClassMouse; |
| 3135 | eventTypeSpec.eventKind = kEventMouseWheelMoved; |
| 3136 | mouseWheelHandlerUPP = NewEventHandlerUPP(gui_mac_mouse_wheel); |
| 3137 | if (noErr != InstallApplicationEventHandler(mouseWheelHandlerUPP, 1, |
| 3138 | &eventTypeSpec, NULL, &mouseWheelHandlerRef)) |
| 3139 | { |
| 3140 | mouseWheelHandlerRef = NULL; |
| 3141 | DisposeEventHandlerUPP(mouseWheelHandlerUPP); |
| 3142 | mouseWheelHandlerUPP = NULL; |
| 3143 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3144 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3145 | #ifdef USE_CARBONKEYHANDLER |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3146 | InterfaceTypeList supportedServices = { kUnicodeDocument }; |
| 3147 | NewTSMDocument(1, supportedServices, &gTSMDocument, 0); |
| 3148 | |
| 3149 | /* We don't support inline input yet, use input window by default */ |
| 3150 | UseInputWindow(gTSMDocument, TRUE); |
| 3151 | |
| 3152 | /* Should we activate the document by default? */ |
| 3153 | // ActivateTSMDocument(gTSMDocument); |
| 3154 | |
| 3155 | EventTypeSpec textEventTypes[] = { |
| 3156 | { kEventClassTextInput, kEventTextInputUpdateActiveInputArea }, |
| 3157 | { kEventClassTextInput, kEventTextInputUnicodeForKeyEvent }, |
| 3158 | { kEventClassTextInput, kEventTextInputPosToOffset }, |
| 3159 | { kEventClassTextInput, kEventTextInputOffsetToPos }, |
| 3160 | }; |
| 3161 | |
| 3162 | keyEventHandlerUPP = NewEventHandlerUPP(gui_mac_handle_text_input); |
| 3163 | if (noErr != InstallApplicationEventHandler(keyEventHandlerUPP, |
| 3164 | NR_ELEMS(textEventTypes), |
| 3165 | textEventTypes, NULL, NULL)) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3166 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3167 | DisposeEventHandlerUPP(keyEventHandlerUPP); |
| 3168 | keyEventHandlerUPP = NULL; |
| 3169 | } |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3170 | |
| 3171 | EventTypeSpec windowEventTypes[] = { |
| 3172 | { kEventClassWindow, kEventWindowActivated }, |
| 3173 | { kEventClassWindow, kEventWindowDeactivated }, |
| 3174 | }; |
| 3175 | |
| 3176 | /* Install window event handler to support TSMDocument activate and |
| 3177 | * deactivate */ |
| 3178 | winEventHandlerUPP = NewEventHandlerUPP(gui_mac_handle_window_activate); |
| 3179 | if (noErr != InstallWindowEventHandler(gui.VimWindow, |
| 3180 | winEventHandlerUPP, |
| 3181 | NR_ELEMS(windowEventTypes), |
| 3182 | windowEventTypes, NULL, NULL)) |
| 3183 | { |
| 3184 | DisposeEventHandlerUPP(winEventHandlerUPP); |
| 3185 | winEventHandlerUPP = NULL; |
| 3186 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3187 | #endif |
| 3188 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3189 | /* |
| 3190 | #ifdef FEAT_MBYTE |
| 3191 | set_option_value((char_u *)"encoding", 0L, (char_u *)"utf-8", 0); |
| 3192 | #endif |
| 3193 | */ |
| 3194 | |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 3195 | #ifdef FEAT_GUI_TABLINE |
| 3196 | /* |
| 3197 | * Create the tabline |
| 3198 | */ |
| 3199 | initialise_tabline(); |
| 3200 | #endif |
| 3201 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3202 | /* TODO: Load bitmap if using TOOLBAR */ |
| 3203 | return OK; |
| 3204 | } |
| 3205 | |
| 3206 | /* |
| 3207 | * Called when the foreground or background color has been changed. |
| 3208 | */ |
| 3209 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3210 | gui_mch_new_colors(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3211 | { |
| 3212 | /* TODO: |
| 3213 | * This proc is called when Normal is set to a value |
Bram Moolenaar | 68dfcdf | 2011-12-14 15:07:29 +0100 | [diff] [blame] | 3214 | * so what must be done? I don't know |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3215 | */ |
| 3216 | } |
| 3217 | |
| 3218 | /* |
| 3219 | * Open the GUI window which was created by a call to gui_mch_init(). |
| 3220 | */ |
| 3221 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3222 | gui_mch_open(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3223 | { |
| 3224 | ShowWindow(gui.VimWindow); |
| 3225 | |
| 3226 | if (gui_win_x != -1 && gui_win_y != -1) |
| 3227 | gui_mch_set_winpos(gui_win_x, gui_win_y); |
| 3228 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3229 | /* |
| 3230 | * Make the GUI the foreground process (in case it was launched |
| 3231 | * from the Terminal or via :gui). |
| 3232 | */ |
| 3233 | { |
| 3234 | ProcessSerialNumber psn; |
| 3235 | if (GetCurrentProcess(&psn) == noErr) |
| 3236 | SetFrontProcess(&psn); |
| 3237 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3238 | |
| 3239 | return OK; |
| 3240 | } |
| 3241 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3242 | #ifdef USE_ATSUI_DRAWING |
| 3243 | static void |
| 3244 | gui_mac_dispose_atsui_style(void) |
| 3245 | { |
| 3246 | if (p_macatsui && gFontStyle) |
| 3247 | ATSUDisposeStyle(gFontStyle); |
| 3248 | #ifdef FEAT_MBYTE |
| 3249 | if (p_macatsui && gWideFontStyle) |
| 3250 | ATSUDisposeStyle(gWideFontStyle); |
| 3251 | #endif |
| 3252 | } |
| 3253 | #endif |
| 3254 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3255 | void |
| 3256 | gui_mch_exit(int rc) |
| 3257 | { |
| 3258 | /* TODO: find out all what is missing here? */ |
| 3259 | DisposeRgn(cursorRgn); |
| 3260 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3261 | #ifdef USE_CARBONKEYHANDLER |
| 3262 | if (keyEventHandlerUPP) |
| 3263 | DisposeEventHandlerUPP(keyEventHandlerUPP); |
| 3264 | #endif |
| 3265 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3266 | if (mouseWheelHandlerUPP != NULL) |
| 3267 | DisposeEventHandlerUPP(mouseWheelHandlerUPP); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3268 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3269 | #ifdef USE_ATSUI_DRAWING |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3270 | gui_mac_dispose_atsui_style(); |
| 3271 | #endif |
| 3272 | |
| 3273 | #ifdef USE_CARBONKEYHANDLER |
| 3274 | FixTSMDocument(gTSMDocument); |
| 3275 | DeactivateTSMDocument(gTSMDocument); |
| 3276 | DeleteTSMDocument(gTSMDocument); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3277 | #endif |
| 3278 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3279 | /* Exit to shell? */ |
| 3280 | exit(rc); |
| 3281 | } |
| 3282 | |
| 3283 | /* |
| 3284 | * Get the position of the top left corner of the window. |
| 3285 | */ |
| 3286 | int |
| 3287 | gui_mch_get_winpos(int *x, int *y) |
| 3288 | { |
| 3289 | /* TODO */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3290 | Rect bounds; |
| 3291 | OSStatus status; |
| 3292 | |
| 3293 | /* Carbon >= 1.0.2, MacOS >= 8.5 */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3294 | status = GetWindowBounds(gui.VimWindow, kWindowStructureRgn, &bounds); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3295 | |
| 3296 | if (status != noErr) |
| 3297 | return FAIL; |
| 3298 | *x = bounds.left; |
| 3299 | *y = bounds.top; |
| 3300 | return OK; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3301 | } |
| 3302 | |
| 3303 | /* |
| 3304 | * Set the position of the top left corner of the window to the given |
| 3305 | * coordinates. |
| 3306 | */ |
| 3307 | void |
| 3308 | gui_mch_set_winpos(int x, int y) |
| 3309 | { |
| 3310 | /* TODO: Should make sure the window is move within range |
| 3311 | * e.g.: y > ~16 [Menu bar], x > 0, x < screen width |
| 3312 | */ |
Bram Moolenaar | ec83173 | 2007-08-30 10:51:14 +0000 | [diff] [blame] | 3313 | MoveWindowStructure(gui.VimWindow, x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3314 | } |
| 3315 | |
| 3316 | void |
| 3317 | gui_mch_set_shellsize( |
| 3318 | int width, |
| 3319 | int height, |
| 3320 | int min_width, |
| 3321 | int min_height, |
| 3322 | int base_width, |
Bram Moolenaar | afa2499 | 2006-03-27 20:58:26 +0000 | [diff] [blame] | 3323 | int base_height, |
| 3324 | int direction) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3325 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3326 | CGrafPtr VimPort; |
| 3327 | Rect VimBound; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3328 | |
| 3329 | if (gui.which_scrollbars[SBAR_LEFT]) |
| 3330 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3331 | VimPort = GetWindowPort(gui.VimWindow); |
| 3332 | GetPortBounds(VimPort, &VimBound); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3333 | VimBound.left = -gui.scrollbar_width; /* + 1;*/ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3334 | SetPortBounds(VimPort, &VimBound); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3335 | /* GetWindowBounds(gui.VimWindow, kWindowGlobalPortRgn, &winPortRect); ??*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3336 | } |
| 3337 | else |
| 3338 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3339 | VimPort = GetWindowPort(gui.VimWindow); |
| 3340 | GetPortBounds(VimPort, &VimBound); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3341 | VimBound.left = 0; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3342 | SetPortBounds(VimPort, &VimBound); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3343 | } |
| 3344 | |
| 3345 | SizeWindow(gui.VimWindow, width, height, TRUE); |
| 3346 | |
| 3347 | gui_resize_shell(width, height); |
| 3348 | } |
| 3349 | |
| 3350 | /* |
| 3351 | * Get the screen dimensions. |
| 3352 | * Allow 10 pixels for horizontal borders, 40 for vertical borders. |
| 3353 | * Is there no way to find out how wide the borders really are? |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 3354 | * TODO: Add live update of those value on suspend/resume. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3355 | */ |
| 3356 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3357 | gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3358 | { |
| 3359 | GDHandle dominantDevice = GetMainDevice(); |
| 3360 | Rect screenRect = (**dominantDevice).gdRect; |
| 3361 | |
| 3362 | *screen_w = screenRect.right - 10; |
| 3363 | *screen_h = screenRect.bottom - 40; |
| 3364 | } |
| 3365 | |
| 3366 | |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3367 | /* |
| 3368 | * Open the Font Panel and wait for the user to select a font and |
| 3369 | * close the panel. Then fill the buffer pointed to by font_name with |
| 3370 | * the name and size of the selected font and return the font's handle, |
| 3371 | * or NOFONT in case of an error. |
| 3372 | */ |
| 3373 | static GuiFont |
| 3374 | gui_mac_select_font(char_u *font_name) |
| 3375 | { |
| 3376 | GuiFont selected_font = NOFONT; |
| 3377 | OSStatus status; |
| 3378 | FontSelectionQDStyle curr_font; |
| 3379 | |
| 3380 | /* Initialize the Font Panel with the current font. */ |
| 3381 | curr_font.instance.fontFamily = gui.norm_font & 0xFFFF; |
| 3382 | curr_font.size = (gui.norm_font >> 16); |
| 3383 | /* TODO: set fontStyle once styles are supported in gui_mac_find_font() */ |
| 3384 | curr_font.instance.fontStyle = 0; |
| 3385 | curr_font.hasColor = false; |
| 3386 | curr_font.version = 0; /* version number of the style structure */ |
| 3387 | status = SetFontInfoForSelection(kFontSelectionQDType, |
| 3388 | /*numStyles=*/1, &curr_font, /*eventTarget=*/NULL); |
| 3389 | |
| 3390 | gFontPanelInfo.family = curr_font.instance.fontFamily; |
| 3391 | gFontPanelInfo.style = curr_font.instance.fontStyle; |
| 3392 | gFontPanelInfo.size = curr_font.size; |
| 3393 | |
| 3394 | /* Pop up the Font Panel. */ |
| 3395 | status = FPShowHideFontPanel(); |
| 3396 | if (status == noErr) |
| 3397 | { |
| 3398 | /* |
| 3399 | * The Font Panel is modeless. We really need it to be modal, |
| 3400 | * so we spin in an event loop until the panel is closed. |
| 3401 | */ |
| 3402 | gFontPanelInfo.isPanelVisible = true; |
| 3403 | while (gFontPanelInfo.isPanelVisible) |
| 3404 | { |
| 3405 | EventRecord e; |
| 3406 | WaitNextEvent(everyEvent, &e, /*sleep=*/20, /*mouseRgn=*/NULL); |
| 3407 | } |
| 3408 | |
| 3409 | GetFontPanelSelection(font_name); |
| 3410 | selected_font = gui_mac_find_font(font_name); |
| 3411 | } |
| 3412 | return selected_font; |
| 3413 | } |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3414 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3415 | #ifdef USE_ATSUI_DRAWING |
| 3416 | static void |
| 3417 | gui_mac_create_atsui_style(void) |
| 3418 | { |
| 3419 | if (p_macatsui && gFontStyle == NULL) |
| 3420 | { |
| 3421 | if (ATSUCreateStyle(&gFontStyle) != noErr) |
| 3422 | gFontStyle = NULL; |
| 3423 | } |
| 3424 | #ifdef FEAT_MBYTE |
| 3425 | if (p_macatsui && gWideFontStyle == NULL) |
| 3426 | { |
| 3427 | if (ATSUCreateStyle(&gWideFontStyle) != noErr) |
| 3428 | gWideFontStyle = NULL; |
| 3429 | } |
| 3430 | #endif |
| 3431 | |
| 3432 | p_macatsui_last = p_macatsui; |
| 3433 | } |
| 3434 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3435 | |
| 3436 | /* |
| 3437 | * Initialise vim to use the font with the given name. Return FAIL if the font |
| 3438 | * could not be loaded, OK otherwise. |
| 3439 | */ |
| 3440 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3441 | gui_mch_init_font(char_u *font_name, int fontset) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3442 | { |
| 3443 | /* TODO: Add support for bold italic underline proportional etc... */ |
| 3444 | Str255 suggestedFont = "\pMonaco"; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 3445 | int suggestedSize = 10; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3446 | FontInfo font_info; |
| 3447 | short font_id; |
| 3448 | GuiFont font; |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3449 | char_u used_font_name[512]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3450 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3451 | #ifdef USE_ATSUI_DRAWING |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3452 | gui_mac_create_atsui_style(); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3453 | #endif |
| 3454 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3455 | if (font_name == NULL) |
| 3456 | { |
| 3457 | /* First try to get the suggested font */ |
| 3458 | GetFNum(suggestedFont, &font_id); |
| 3459 | |
| 3460 | if (font_id == 0) |
| 3461 | { |
| 3462 | /* Then pickup the standard application font */ |
| 3463 | font_id = GetAppFont(); |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3464 | STRCPY(used_font_name, "default"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3465 | } |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3466 | else |
| 3467 | STRCPY(used_font_name, "Monaco"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3468 | font = (suggestedSize << 16) + ((long) font_id & 0xFFFF); |
| 3469 | } |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3470 | else if (STRCMP(font_name, "*") == 0) |
| 3471 | { |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3472 | char_u *new_p_guifont; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3473 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3474 | font = gui_mac_select_font(used_font_name); |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3475 | if (font == NOFONT) |
| 3476 | return FAIL; |
| 3477 | |
| 3478 | /* Set guifont to the name of the selected font. */ |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3479 | new_p_guifont = alloc(STRLEN(used_font_name) + 1); |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3480 | if (new_p_guifont != NULL) |
| 3481 | { |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3482 | STRCPY(new_p_guifont, used_font_name); |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 3483 | vim_free(p_guifont); |
| 3484 | p_guifont = new_p_guifont; |
| 3485 | /* Replace spaces in the font name with underscores. */ |
| 3486 | for ( ; *new_p_guifont; ++new_p_guifont) |
| 3487 | { |
| 3488 | if (*new_p_guifont == ' ') |
| 3489 | *new_p_guifont = '_'; |
| 3490 | } |
| 3491 | } |
| 3492 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3493 | else |
| 3494 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3495 | font = gui_mac_find_font(font_name); |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 3496 | vim_strncpy(used_font_name, font_name, sizeof(used_font_name) - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3497 | |
| 3498 | if (font == NOFONT) |
| 3499 | return FAIL; |
| 3500 | } |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3501 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3502 | gui.norm_font = font; |
| 3503 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3504 | hl_set_font_name(used_font_name); |
| 3505 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3506 | TextSize(font >> 16); |
| 3507 | TextFont(font & 0xFFFF); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3508 | |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 3509 | GetFontInfo(&font_info); |
| 3510 | |
| 3511 | gui.char_ascent = font_info.ascent; |
| 3512 | gui.char_width = CharWidth('_'); |
| 3513 | gui.char_height = font_info.ascent + font_info.descent + p_linespace; |
| 3514 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3515 | #ifdef USE_ATSUI_DRAWING |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 3516 | if (p_macatsui && gFontStyle) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3517 | gui_mac_set_font_attributes(font); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3518 | #endif |
| 3519 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3520 | return OK; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3521 | } |
| 3522 | |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 3523 | /* |
| 3524 | * Adjust gui.char_height (after 'linespace' was changed). |
| 3525 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3526 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3527 | gui_mch_adjust_charheight(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3528 | { |
| 3529 | FontInfo font_info; |
| 3530 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3531 | GetFontInfo(&font_info); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3532 | gui.char_height = font_info.ascent + font_info.descent + p_linespace; |
| 3533 | gui.char_ascent = font_info.ascent + p_linespace / 2; |
| 3534 | return OK; |
| 3535 | } |
| 3536 | |
| 3537 | /* |
| 3538 | * Get a font structure for highlighting. |
| 3539 | */ |
| 3540 | GuiFont |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3541 | gui_mch_get_font(char_u *name, int giveErrorIfMissing) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3542 | { |
| 3543 | GuiFont font; |
| 3544 | |
| 3545 | font = gui_mac_find_font(name); |
| 3546 | |
| 3547 | if (font == NOFONT) |
| 3548 | { |
| 3549 | if (giveErrorIfMissing) |
| 3550 | EMSG2(_(e_font), name); |
| 3551 | return NOFONT; |
| 3552 | } |
| 3553 | /* |
| 3554 | * TODO : Accept only monospace |
| 3555 | */ |
| 3556 | |
| 3557 | return font; |
| 3558 | } |
| 3559 | |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 3560 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3561 | /* |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3562 | * Return the name of font "font" in allocated memory. |
| 3563 | * Don't know how to get the actual name, thus use the provided name. |
| 3564 | */ |
| 3565 | char_u * |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3566 | gui_mch_get_fontname(GuiFont font, char_u *name) |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3567 | { |
| 3568 | if (name == NULL) |
| 3569 | return NULL; |
| 3570 | return vim_strsave(name); |
| 3571 | } |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 3572 | #endif |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3573 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3574 | #ifdef USE_ATSUI_DRAWING |
| 3575 | static void |
| 3576 | gui_mac_set_font_attributes(GuiFont font) |
| 3577 | { |
| 3578 | ATSUFontID fontID; |
| 3579 | Fixed fontSize; |
| 3580 | Fixed fontWidth; |
| 3581 | |
| 3582 | fontID = font & 0xFFFF; |
| 3583 | fontSize = Long2Fix(font >> 16); |
| 3584 | fontWidth = Long2Fix(gui.char_width); |
| 3585 | |
| 3586 | ATSUAttributeTag attribTags[] = |
| 3587 | { |
| 3588 | kATSUFontTag, kATSUSizeTag, kATSUImposeWidthTag, |
| 3589 | kATSUMaxATSUITagValue + 1 |
| 3590 | }; |
| 3591 | |
| 3592 | ByteCount attribSizes[] = |
| 3593 | { |
| 3594 | sizeof(ATSUFontID), sizeof(Fixed), sizeof(fontWidth), |
| 3595 | sizeof(font) |
| 3596 | }; |
| 3597 | |
| 3598 | ATSUAttributeValuePtr attribValues[] = |
| 3599 | { |
| 3600 | &fontID, &fontSize, &fontWidth, &font |
| 3601 | }; |
| 3602 | |
| 3603 | if (FMGetFontFromFontFamilyInstance(fontID, 0, &fontID, NULL) == noErr) |
| 3604 | { |
| 3605 | if (ATSUSetAttributes(gFontStyle, |
| 3606 | (sizeof attribTags) / sizeof(ATSUAttributeTag), |
| 3607 | attribTags, attribSizes, attribValues) != noErr) |
| 3608 | { |
| 3609 | # ifndef NDEBUG |
| 3610 | fprintf(stderr, "couldn't set font style\n"); |
| 3611 | # endif |
| 3612 | ATSUDisposeStyle(gFontStyle); |
| 3613 | gFontStyle = NULL; |
| 3614 | } |
| 3615 | |
| 3616 | #ifdef FEAT_MBYTE |
| 3617 | if (has_mbyte) |
| 3618 | { |
| 3619 | /* FIXME: we should use a more mbyte sensitive way to support |
| 3620 | * wide font drawing */ |
| 3621 | fontWidth = Long2Fix(gui.char_width * 2); |
| 3622 | |
| 3623 | if (ATSUSetAttributes(gWideFontStyle, |
| 3624 | (sizeof attribTags) / sizeof(ATSUAttributeTag), |
| 3625 | attribTags, attribSizes, attribValues) != noErr) |
| 3626 | { |
| 3627 | ATSUDisposeStyle(gWideFontStyle); |
| 3628 | gWideFontStyle = NULL; |
| 3629 | } |
| 3630 | } |
| 3631 | #endif |
| 3632 | } |
| 3633 | } |
| 3634 | #endif |
| 3635 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 3636 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3637 | * Set the current text font. |
| 3638 | */ |
| 3639 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3640 | gui_mch_set_font(GuiFont font) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3641 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3642 | #ifdef USE_ATSUI_DRAWING |
| 3643 | GuiFont currFont; |
| 3644 | ByteCount actualFontByteCount; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3645 | |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 3646 | if (p_macatsui && gFontStyle) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3647 | { |
| 3648 | /* Avoid setting same font again */ |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3649 | if (ATSUGetAttribute(gFontStyle, kATSUMaxATSUITagValue + 1, |
| 3650 | sizeof(font), &currFont, &actualFontByteCount) == noErr |
| 3651 | && actualFontByteCount == (sizeof font)) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3652 | { |
| 3653 | if (currFont == font) |
| 3654 | return; |
| 3655 | } |
| 3656 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3657 | gui_mac_set_font_attributes(font); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3658 | } |
| 3659 | |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 3660 | if (p_macatsui && !gIsFontFallbackSet) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3661 | { |
| 3662 | /* Setup automatic font substitution. The user's guifontwide |
| 3663 | * is tried first, then the system tries other fonts. */ |
| 3664 | /* |
| 3665 | ATSUAttributeTag fallbackTags[] = { kATSULineFontFallbacksTag }; |
| 3666 | ByteCount fallbackSizes[] = { sizeof(ATSUFontFallbacks) }; |
| 3667 | ATSUCreateFontFallbacks(&gFontFallbacks); |
| 3668 | ATSUSetObjFontFallbacks(gFontFallbacks, ); |
| 3669 | */ |
| 3670 | if (gui.wide_font) |
| 3671 | { |
| 3672 | ATSUFontID fallbackFonts; |
| 3673 | gIsFontFallbackSet = TRUE; |
| 3674 | |
| 3675 | if (FMGetFontFromFontFamilyInstance( |
| 3676 | (gui.wide_font & 0xFFFF), |
| 3677 | 0, |
| 3678 | &fallbackFonts, |
| 3679 | NULL) == noErr) |
| 3680 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3681 | ATSUSetFontFallbacks((sizeof fallbackFonts)/sizeof(ATSUFontID), |
| 3682 | &fallbackFonts, |
| 3683 | kATSUSequentialFallbacksPreferred); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3684 | } |
| 3685 | /* |
| 3686 | ATSUAttributeValuePtr fallbackValues[] = { }; |
| 3687 | */ |
| 3688 | } |
| 3689 | } |
| 3690 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3691 | TextSize(font >> 16); |
| 3692 | TextFont(font & 0xFFFF); |
| 3693 | } |
| 3694 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3695 | /* |
| 3696 | * If a font is not going to be used, free its structure. |
| 3697 | */ |
| 3698 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 3699 | gui_mch_free_font(GuiFont font) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3700 | { |
| 3701 | /* |
| 3702 | * Free font when "font" is not 0. |
| 3703 | * Nothing to do in the current implementation, since |
| 3704 | * nothing is allocated for each font used. |
| 3705 | */ |
| 3706 | } |
| 3707 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3708 | /* |
| 3709 | * Return the Pixel value (color) for the given color name. This routine was |
| 3710 | * pretty much taken from example code in the Silicon Graphics OSF/Motif |
| 3711 | * Programmer's Guide. |
| 3712 | * Return INVALCOLOR when failed. |
| 3713 | */ |
| 3714 | guicolor_T |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3715 | gui_mch_get_color(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3716 | { |
| 3717 | /* TODO: Add support for the new named color of MacOS 8 |
| 3718 | */ |
| 3719 | RGBColor MacColor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3720 | |
Bram Moolenaar | ab30221 | 2016-04-26 20:59:29 +0200 | [diff] [blame] | 3721 | if (STRICMP(name, "hilite") == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3722 | { |
Bram Moolenaar | ab30221 | 2016-04-26 20:59:29 +0200 | [diff] [blame] | 3723 | LMGetHiliteRGB(&MacColor); |
| 3724 | return (RGB(MacColor.red >> 8, MacColor.green >> 8, MacColor.blue >> 8)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3725 | } |
Bram Moolenaar | ab30221 | 2016-04-26 20:59:29 +0200 | [diff] [blame] | 3726 | return gui_get_color_cmn(name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3727 | } |
| 3728 | |
| 3729 | /* |
| 3730 | * Set the current text foreground color. |
| 3731 | */ |
| 3732 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3733 | gui_mch_set_fg_color(guicolor_T color) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3734 | { |
| 3735 | RGBColor TheColor; |
| 3736 | |
| 3737 | TheColor.red = Red(color) * 0x0101; |
| 3738 | TheColor.green = Green(color) * 0x0101; |
| 3739 | TheColor.blue = Blue(color) * 0x0101; |
| 3740 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3741 | RGBForeColor(&TheColor); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3742 | } |
| 3743 | |
| 3744 | /* |
| 3745 | * Set the current text background color. |
| 3746 | */ |
| 3747 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3748 | gui_mch_set_bg_color(guicolor_T color) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3749 | { |
| 3750 | RGBColor TheColor; |
| 3751 | |
| 3752 | TheColor.red = Red(color) * 0x0101; |
| 3753 | TheColor.green = Green(color) * 0x0101; |
| 3754 | TheColor.blue = Blue(color) * 0x0101; |
| 3755 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3756 | RGBBackColor(&TheColor); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3757 | } |
| 3758 | |
Bram Moolenaar | 5fe3861 | 2005-11-26 23:45:02 +0000 | [diff] [blame] | 3759 | RGBColor specialColor; |
| 3760 | |
Bram Moolenaar | 916b7af | 2005-03-16 09:52:38 +0000 | [diff] [blame] | 3761 | /* |
Bram Moolenaar | 5fe3861 | 2005-11-26 23:45:02 +0000 | [diff] [blame] | 3762 | * Set the current text special color. |
Bram Moolenaar | 916b7af | 2005-03-16 09:52:38 +0000 | [diff] [blame] | 3763 | */ |
| 3764 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3765 | gui_mch_set_sp_color(guicolor_T color) |
Bram Moolenaar | 916b7af | 2005-03-16 09:52:38 +0000 | [diff] [blame] | 3766 | { |
Bram Moolenaar | 5fe3861 | 2005-11-26 23:45:02 +0000 | [diff] [blame] | 3767 | specialColor.red = Red(color) * 0x0101; |
| 3768 | specialColor.green = Green(color) * 0x0101; |
| 3769 | specialColor.blue = Blue(color) * 0x0101; |
| 3770 | } |
| 3771 | |
| 3772 | /* |
| 3773 | * Draw undercurl at the bottom of the character cell. |
| 3774 | */ |
| 3775 | static void |
| 3776 | draw_undercurl(int flags, int row, int col, int cells) |
| 3777 | { |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3778 | int x; |
| 3779 | int offset; |
| 3780 | const static int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; |
| 3781 | int y = FILL_Y(row + 1) - 1; |
Bram Moolenaar | 5fe3861 | 2005-11-26 23:45:02 +0000 | [diff] [blame] | 3782 | |
| 3783 | RGBForeColor(&specialColor); |
| 3784 | |
| 3785 | offset = val[FILL_X(col) % 8]; |
| 3786 | MoveTo(FILL_X(col), y - offset); |
| 3787 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3788 | for (x = FILL_X(col); x < FILL_X(col + cells); ++x) |
Bram Moolenaar | 5fe3861 | 2005-11-26 23:45:02 +0000 | [diff] [blame] | 3789 | { |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3790 | offset = val[x % 8]; |
| 3791 | LineTo(x, y - offset); |
Bram Moolenaar | 5fe3861 | 2005-11-26 23:45:02 +0000 | [diff] [blame] | 3792 | } |
Bram Moolenaar | 916b7af | 2005-03-16 09:52:38 +0000 | [diff] [blame] | 3793 | } |
| 3794 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3795 | |
| 3796 | static void |
| 3797 | draw_string_QD(int row, int col, char_u *s, int len, int flags) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3798 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3799 | #ifdef FEAT_MBYTE |
| 3800 | char_u *tofree = NULL; |
| 3801 | |
| 3802 | if (output_conv.vc_type != CONV_NONE) |
| 3803 | { |
| 3804 | tofree = string_convert(&output_conv, s, &len); |
| 3805 | if (tofree != NULL) |
| 3806 | s = tofree; |
| 3807 | } |
| 3808 | #endif |
| 3809 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3810 | /* |
| 3811 | * On OS X, try using Quartz-style text antialiasing. |
| 3812 | */ |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 3813 | if (gMacSystemVersion >= 0x1020) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3814 | { |
| 3815 | /* Quartz antialiasing is available only in OS 10.2 and later. */ |
| 3816 | UInt32 qd_flags = (p_antialias ? |
| 3817 | kQDUseCGTextRendering | kQDUseCGTextMetrics : 0); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3818 | QDSwapTextFlags(qd_flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3819 | } |
| 3820 | |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3821 | /* |
| 3822 | * When antialiasing we're using srcOr mode, we have to clear the block |
| 3823 | * before drawing the text. |
| 3824 | * Also needed when 'linespace' is non-zero to remove the cursor and |
| 3825 | * underlining. |
| 3826 | * But not when drawing transparently. |
| 3827 | * The following is like calling gui_mch_clear_block(row, col, row, col + |
| 3828 | * len - 1), but without setting the bg color to gui.back_pixel. |
| 3829 | */ |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 3830 | if (((gMacSystemVersion >= 0x1020 && p_antialias) || p_linespace != 0) |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3831 | && !(flags & DRAW_TRANSP)) |
| 3832 | { |
| 3833 | Rect rc; |
| 3834 | |
| 3835 | rc.left = FILL_X(col); |
| 3836 | rc.top = FILL_Y(row); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3837 | #ifdef FEAT_MBYTE |
| 3838 | /* Multibyte computation taken from gui_w32.c */ |
| 3839 | if (has_mbyte) |
| 3840 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3841 | /* Compute the length in display cells. */ |
Bram Moolenaar | 72597a5 | 2010-07-18 15:31:08 +0200 | [diff] [blame] | 3842 | rc.right = FILL_X(col + mb_string2cells(s, len)); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3843 | } |
| 3844 | else |
| 3845 | #endif |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 3846 | rc.right = FILL_X(col + len) + (col + len == Columns); |
| 3847 | rc.bottom = FILL_Y(row + 1); |
| 3848 | EraseRect(&rc); |
| 3849 | } |
| 3850 | |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 3851 | if (gMacSystemVersion >= 0x1020 && p_antialias) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3852 | { |
| 3853 | StyleParameter face; |
| 3854 | |
| 3855 | face = normal; |
| 3856 | if (flags & DRAW_BOLD) |
| 3857 | face |= bold; |
| 3858 | if (flags & DRAW_UNDERL) |
| 3859 | face |= underline; |
| 3860 | TextFace(face); |
| 3861 | |
| 3862 | /* Quartz antialiasing works only in srcOr transfer mode. */ |
| 3863 | TextMode(srcOr); |
| 3864 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3865 | MoveTo(TEXT_X(col), TEXT_Y(row)); |
| 3866 | DrawText((char*)s, 0, len); |
| 3867 | } |
| 3868 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3869 | { |
| 3870 | /* Use old-style, non-antialiased QuickDraw text rendering. */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3871 | TextMode(srcCopy); |
| 3872 | TextFace(normal); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3873 | |
| 3874 | /* SelectFont(hdc, gui.currFont); */ |
| 3875 | |
| 3876 | if (flags & DRAW_TRANSP) |
| 3877 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3878 | TextMode(srcOr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3879 | } |
| 3880 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 3881 | MoveTo(TEXT_X(col), TEXT_Y(row)); |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3882 | DrawText((char *)s, 0, len); |
| 3883 | |
| 3884 | if (flags & DRAW_BOLD) |
| 3885 | { |
| 3886 | TextMode(srcOr); |
| 3887 | MoveTo(TEXT_X(col) + 1, TEXT_Y(row)); |
| 3888 | DrawText((char *)s, 0, len); |
| 3889 | } |
| 3890 | |
| 3891 | if (flags & DRAW_UNDERL) |
| 3892 | { |
| 3893 | MoveTo(FILL_X(col), FILL_Y(row + 1) - 1); |
| 3894 | LineTo(FILL_X(col + len) - 1, FILL_Y(row + 1) - 1); |
| 3895 | } |
| 3896 | } |
| 3897 | |
| 3898 | if (flags & DRAW_UNDERC) |
| 3899 | draw_undercurl(flags, row, col, len); |
| 3900 | |
| 3901 | #ifdef FEAT_MBYTE |
| 3902 | vim_free(tofree); |
| 3903 | #endif |
| 3904 | } |
| 3905 | |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 3906 | #ifdef USE_ATSUI_DRAWING |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3907 | |
| 3908 | static void |
| 3909 | draw_string_ATSUI(int row, int col, char_u *s, int len, int flags) |
| 3910 | { |
| 3911 | /* ATSUI requires utf-16 strings */ |
| 3912 | UniCharCount utf16_len; |
| 3913 | UniChar *tofree = mac_enc_to_utf16(s, len, (size_t *)&utf16_len); |
| 3914 | utf16_len /= sizeof(UniChar); |
| 3915 | |
| 3916 | /* - ATSUI automatically antialiases text (Someone) |
| 3917 | * - for some reason it does not work... (Jussi) */ |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3918 | #ifdef MAC_ATSUI_DEBUG |
| 3919 | fprintf(stderr, "row = %d, col = %d, len = %d: '%c'\n", |
| 3920 | row, col, len, len == 1 ? s[0] : ' '); |
| 3921 | #endif |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3922 | /* |
| 3923 | * When antialiasing we're using srcOr mode, we have to clear the block |
| 3924 | * before drawing the text. |
| 3925 | * Also needed when 'linespace' is non-zero to remove the cursor and |
| 3926 | * underlining. |
| 3927 | * But not when drawing transparently. |
| 3928 | * The following is like calling gui_mch_clear_block(row, col, row, col + |
| 3929 | * len - 1), but without setting the bg color to gui.back_pixel. |
| 3930 | */ |
| 3931 | if ((flags & DRAW_TRANSP) == 0) |
| 3932 | { |
| 3933 | Rect rc; |
| 3934 | |
| 3935 | rc.left = FILL_X(col); |
| 3936 | rc.top = FILL_Y(row); |
| 3937 | /* Multibyte computation taken from gui_w32.c */ |
| 3938 | if (has_mbyte) |
| 3939 | { |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3940 | /* Compute the length in display cells. */ |
Bram Moolenaar | 72597a5 | 2010-07-18 15:31:08 +0200 | [diff] [blame] | 3941 | rc.right = FILL_X(col + mb_string2cells(s, len)); |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3942 | } |
| 3943 | else |
| 3944 | rc.right = FILL_X(col + len) + (col + len == Columns); |
| 3945 | |
| 3946 | rc.bottom = FILL_Y(row + 1); |
| 3947 | EraseRect(&rc); |
| 3948 | } |
| 3949 | |
| 3950 | { |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3951 | TextMode(srcCopy); |
| 3952 | TextFace(normal); |
| 3953 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3954 | /* SelectFont(hdc, gui.currFont); */ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 3955 | if (flags & DRAW_TRANSP) |
| 3956 | { |
| 3957 | TextMode(srcOr); |
| 3958 | } |
| 3959 | |
| 3960 | MoveTo(TEXT_X(col), TEXT_Y(row)); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3961 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3962 | if (gFontStyle && flags & DRAW_BOLD) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3963 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3964 | Boolean attValue = true; |
| 3965 | ATSUAttributeTag attribTags[] = { kATSUQDBoldfaceTag }; |
| 3966 | ByteCount attribSizes[] = { sizeof(Boolean) }; |
| 3967 | ATSUAttributeValuePtr attribValues[] = { &attValue }; |
| 3968 | |
| 3969 | ATSUSetAttributes(gFontStyle, 1, attribTags, attribSizes, attribValues); |
| 3970 | } |
| 3971 | |
Bram Moolenaar | 76b96fc | 2010-07-17 16:44:59 +0200 | [diff] [blame] | 3972 | UInt32 useAntialias = p_antialias ? kATSStyleApplyAntiAliasing |
| 3973 | : kATSStyleNoAntiAliasing; |
| 3974 | if (useAntialias != useAntialias_cached) |
| 3975 | { |
| 3976 | ATSUAttributeTag attribTags[] = { kATSUStyleRenderingOptionsTag }; |
| 3977 | ByteCount attribSizes[] = { sizeof(UInt32) }; |
| 3978 | ATSUAttributeValuePtr attribValues[] = { &useAntialias }; |
| 3979 | |
| 3980 | if (gFontStyle) |
| 3981 | ATSUSetAttributes(gFontStyle, 1, attribTags, |
| 3982 | attribSizes, attribValues); |
| 3983 | if (gWideFontStyle) |
| 3984 | ATSUSetAttributes(gWideFontStyle, 1, attribTags, |
| 3985 | attribSizes, attribValues); |
| 3986 | |
| 3987 | useAntialias_cached = useAntialias; |
| 3988 | } |
| 3989 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 3990 | #ifdef FEAT_MBYTE |
| 3991 | if (has_mbyte) |
| 3992 | { |
| 3993 | int n, width_in_cell, last_width_in_cell; |
| 3994 | UniCharArrayOffset offset = 0; |
| 3995 | UniCharCount yet_to_draw = 0; |
| 3996 | ATSUTextLayout textLayout; |
| 3997 | ATSUStyle textStyle; |
| 3998 | |
| 3999 | last_width_in_cell = 1; |
| 4000 | ATSUCreateTextLayout(&textLayout); |
| 4001 | ATSUSetTextPointerLocation(textLayout, tofree, |
| 4002 | kATSUFromTextBeginning, |
| 4003 | kATSUToTextEnd, utf16_len); |
| 4004 | /* |
| 4005 | ATSUSetRunStyle(textLayout, gFontStyle, |
| 4006 | kATSUFromTextBeginning, kATSUToTextEnd); */ |
| 4007 | |
| 4008 | /* Compute the length in display cells. */ |
| 4009 | for (n = 0; n < len; n += MB_BYTE2LEN(s[n])) |
| 4010 | { |
| 4011 | width_in_cell = (*mb_ptr2cells)(s + n); |
| 4012 | |
| 4013 | /* probably we are switching from single byte character |
| 4014 | * to multibyte characters (which requires more than one |
| 4015 | * cell to draw) */ |
| 4016 | if (width_in_cell != last_width_in_cell) |
| 4017 | { |
| 4018 | #ifdef MAC_ATSUI_DEBUG |
| 4019 | fprintf(stderr, "\tn = %2d, (%d-%d), offset = %d, yet_to_draw = %d\n", |
| 4020 | n, last_width_in_cell, width_in_cell, offset, yet_to_draw); |
| 4021 | #endif |
| 4022 | textStyle = last_width_in_cell > 1 ? gWideFontStyle |
| 4023 | : gFontStyle; |
| 4024 | |
| 4025 | ATSUSetRunStyle(textLayout, textStyle, offset, yet_to_draw); |
| 4026 | offset += yet_to_draw; |
| 4027 | yet_to_draw = 0; |
| 4028 | last_width_in_cell = width_in_cell; |
| 4029 | } |
| 4030 | |
| 4031 | yet_to_draw++; |
| 4032 | } |
| 4033 | |
| 4034 | if (yet_to_draw) |
| 4035 | { |
| 4036 | #ifdef MAC_ATSUI_DEBUG |
| 4037 | fprintf(stderr, "\tn = %2d, (%d-%d), offset = %d, yet_to_draw = %d\n", |
| 4038 | n, last_width_in_cell, width_in_cell, offset, yet_to_draw); |
| 4039 | #endif |
| 4040 | /* finish the rest style */ |
| 4041 | textStyle = width_in_cell > 1 ? gWideFontStyle : gFontStyle; |
| 4042 | ATSUSetRunStyle(textLayout, textStyle, offset, kATSUToTextEnd); |
| 4043 | } |
| 4044 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4045 | ATSUSetTransientFontMatching(textLayout, TRUE); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4046 | ATSUDrawText(textLayout, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 4047 | kATSUFromTextBeginning, kATSUToTextEnd, |
| 4048 | kATSUUseGrafPortPenLoc, kATSUUseGrafPortPenLoc); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4049 | ATSUDisposeTextLayout(textLayout); |
| 4050 | } |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 4051 | else |
| 4052 | #endif |
| 4053 | { |
| 4054 | ATSUTextLayout textLayout; |
| 4055 | |
| 4056 | if (ATSUCreateTextLayoutWithTextPtr(tofree, |
| 4057 | kATSUFromTextBeginning, kATSUToTextEnd, |
| 4058 | utf16_len, |
| 4059 | (gFontStyle ? 1 : 0), &utf16_len, |
| 4060 | (gFontStyle ? &gFontStyle : NULL), |
| 4061 | &textLayout) == noErr) |
| 4062 | { |
| 4063 | ATSUSetTransientFontMatching(textLayout, TRUE); |
| 4064 | |
| 4065 | ATSUDrawText(textLayout, |
| 4066 | kATSUFromTextBeginning, kATSUToTextEnd, |
| 4067 | kATSUUseGrafPortPenLoc, kATSUUseGrafPortPenLoc); |
| 4068 | |
| 4069 | ATSUDisposeTextLayout(textLayout); |
| 4070 | } |
| 4071 | } |
| 4072 | |
| 4073 | /* drawing is done, now reset bold to normal */ |
| 4074 | if (gFontStyle && flags & DRAW_BOLD) |
| 4075 | { |
| 4076 | Boolean attValue = false; |
| 4077 | |
| 4078 | ATSUAttributeTag attribTags[] = { kATSUQDBoldfaceTag }; |
| 4079 | ByteCount attribSizes[] = { sizeof(Boolean) }; |
| 4080 | ATSUAttributeValuePtr attribValues[] = { &attValue }; |
| 4081 | |
| 4082 | ATSUSetAttributes(gFontStyle, 1, attribTags, attribSizes, |
| 4083 | attribValues); |
| 4084 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4085 | } |
| 4086 | |
Bram Moolenaar | 5fe3861 | 2005-11-26 23:45:02 +0000 | [diff] [blame] | 4087 | if (flags & DRAW_UNDERC) |
| 4088 | draw_undercurl(flags, row, col, len); |
| 4089 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4090 | vim_free(tofree); |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4091 | } |
| 4092 | #endif |
| 4093 | |
| 4094 | void |
| 4095 | gui_mch_draw_string(int row, int col, char_u *s, int len, int flags) |
| 4096 | { |
| 4097 | #if defined(USE_ATSUI_DRAWING) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 4098 | if (p_macatsui == 0 && p_macatsui_last != 0) |
| 4099 | /* switch from macatsui to nomacatsui */ |
| 4100 | gui_mac_dispose_atsui_style(); |
| 4101 | else if (p_macatsui != 0 && p_macatsui_last == 0) |
| 4102 | /* switch from nomacatsui to macatsui */ |
| 4103 | gui_mac_create_atsui_style(); |
| 4104 | |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 4105 | if (p_macatsui) |
| 4106 | draw_string_ATSUI(row, col, s, len, flags); |
| 4107 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4108 | #endif |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 4109 | draw_string_QD(row, col, s, len, flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4110 | } |
| 4111 | |
| 4112 | /* |
| 4113 | * Return OK if the key with the termcap name "name" is supported. |
| 4114 | */ |
| 4115 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4116 | gui_mch_haskey(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4117 | { |
| 4118 | int i; |
| 4119 | |
| 4120 | for (i = 0; special_keys[i].key_sym != (KeySym)0; i++) |
| 4121 | if (name[0] == special_keys[i].vim_code0 && |
| 4122 | name[1] == special_keys[i].vim_code1) |
| 4123 | return OK; |
| 4124 | return FAIL; |
| 4125 | } |
| 4126 | |
| 4127 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4128 | gui_mch_beep(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4129 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4130 | SysBeep(1); /* Should this be 0? (????) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4131 | } |
| 4132 | |
| 4133 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4134 | gui_mch_flash(int msec) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4135 | { |
| 4136 | /* Do a visual beep by reversing the foreground and background colors */ |
| 4137 | Rect rc; |
| 4138 | |
| 4139 | /* |
| 4140 | * Note: InvertRect() excludes right and bottom of rectangle. |
| 4141 | */ |
| 4142 | rc.left = 0; |
| 4143 | rc.top = 0; |
| 4144 | rc.right = gui.num_cols * gui.char_width; |
| 4145 | rc.bottom = gui.num_rows * gui.char_height; |
| 4146 | InvertRect(&rc); |
| 4147 | |
| 4148 | ui_delay((long)msec, TRUE); /* wait for some msec */ |
| 4149 | |
| 4150 | InvertRect(&rc); |
| 4151 | } |
| 4152 | |
| 4153 | /* |
| 4154 | * Invert a rectangle from row r, column c, for nr rows and nc columns. |
| 4155 | */ |
| 4156 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4157 | gui_mch_invert_rectangle(int r, int c, int nr, int nc) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4158 | { |
| 4159 | Rect rc; |
| 4160 | |
| 4161 | /* |
| 4162 | * Note: InvertRect() excludes right and bottom of rectangle. |
| 4163 | */ |
| 4164 | rc.left = FILL_X(c); |
| 4165 | rc.top = FILL_Y(r); |
| 4166 | rc.right = rc.left + nc * gui.char_width; |
| 4167 | rc.bottom = rc.top + nr * gui.char_height; |
| 4168 | InvertRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4169 | } |
| 4170 | |
| 4171 | /* |
| 4172 | * Iconify the GUI window. |
| 4173 | */ |
| 4174 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4175 | gui_mch_iconify(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4176 | { |
| 4177 | /* TODO: find out what could replace iconify |
| 4178 | * -window shade? |
| 4179 | * -hide application? |
| 4180 | */ |
| 4181 | } |
| 4182 | |
| 4183 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 4184 | /* |
| 4185 | * Bring the Vim window to the foreground. |
| 4186 | */ |
| 4187 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4188 | gui_mch_set_foreground(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4189 | { |
| 4190 | /* TODO */ |
| 4191 | } |
| 4192 | #endif |
| 4193 | |
| 4194 | /* |
| 4195 | * Draw a cursor without focus. |
| 4196 | */ |
| 4197 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4198 | gui_mch_draw_hollow_cursor(guicolor_T color) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4199 | { |
| 4200 | Rect rc; |
| 4201 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4202 | /* |
| 4203 | * Note: FrameRect() excludes right and bottom of rectangle. |
| 4204 | */ |
| 4205 | rc.left = FILL_X(gui.col); |
| 4206 | rc.top = FILL_Y(gui.row); |
| 4207 | rc.right = rc.left + gui.char_width; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4208 | #ifdef FEAT_MBYTE |
| 4209 | if (mb_lefthalve(gui.row, gui.col)) |
| 4210 | rc.right += gui.char_width; |
| 4211 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4212 | rc.bottom = rc.top + gui.char_height; |
| 4213 | |
| 4214 | gui_mch_set_fg_color(color); |
| 4215 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4216 | FrameRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4217 | } |
| 4218 | |
| 4219 | /* |
| 4220 | * Draw part of a cursor, only w pixels wide, and h pixels high. |
| 4221 | */ |
| 4222 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4223 | gui_mch_draw_part_cursor(int w, int h, guicolor_T color) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4224 | { |
| 4225 | Rect rc; |
| 4226 | |
| 4227 | #ifdef FEAT_RIGHTLEFT |
| 4228 | /* vertical line should be on the right of current point */ |
| 4229 | if (CURSOR_BAR_RIGHT) |
| 4230 | rc.left = FILL_X(gui.col + 1) - w; |
| 4231 | else |
| 4232 | #endif |
| 4233 | rc.left = FILL_X(gui.col); |
| 4234 | rc.top = FILL_Y(gui.row) + gui.char_height - h; |
| 4235 | rc.right = rc.left + w; |
| 4236 | rc.bottom = rc.top + h; |
| 4237 | |
| 4238 | gui_mch_set_fg_color(color); |
| 4239 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4240 | FrameRect(&rc); |
| 4241 | // PaintRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4242 | } |
| 4243 | |
| 4244 | |
| 4245 | |
| 4246 | /* |
| 4247 | * Catch up with any queued X events. This may put keyboard input into the |
| 4248 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 4249 | * nothing in the X event queue (& no timers pending), then we return |
| 4250 | * immediately. |
| 4251 | */ |
| 4252 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4253 | gui_mch_update(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4254 | { |
| 4255 | /* TODO: find what to do |
| 4256 | * maybe call gui_mch_wait_for_chars (0) |
| 4257 | * more like look at EventQueue then |
| 4258 | * call heart of gui_mch_wait_for_chars; |
| 4259 | * |
| 4260 | * if (eventther) |
| 4261 | * gui_mac_handle_event(&event); |
| 4262 | */ |
| 4263 | EventRecord theEvent; |
| 4264 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4265 | if (EventAvail(everyEvent, &theEvent)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4266 | if (theEvent.what != nullEvent) |
| 4267 | gui_mch_wait_for_chars(0); |
| 4268 | } |
| 4269 | |
| 4270 | /* |
| 4271 | * Simple wrapper to neglect more easily the time |
| 4272 | * spent inside WaitNextEvent while profiling. |
| 4273 | */ |
| 4274 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4275 | pascal |
| 4276 | Boolean |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4277 | WaitNextEventWrp(EventMask eventMask, EventRecord *theEvent, UInt32 sleep, RgnHandle mouseRgn) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4278 | { |
| 4279 | if (((long) sleep) < -1) |
| 4280 | sleep = 32767; |
| 4281 | return WaitNextEvent(eventMask, theEvent, sleep, mouseRgn); |
| 4282 | } |
| 4283 | |
| 4284 | /* |
| 4285 | * GUI input routine called by gui_wait_for_chars(). Waits for a character |
| 4286 | * from the keyboard. |
| 4287 | * wtime == -1 Wait forever. |
| 4288 | * wtime == 0 This should never happen. |
| 4289 | * wtime > 0 Wait wtime milliseconds for a character. |
| 4290 | * Returns OK if a character was found to be available within the given time, |
| 4291 | * or FAIL otherwise. |
| 4292 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4293 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4294 | gui_mch_wait_for_chars(int wtime) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4295 | { |
| 4296 | EventMask mask = (everyEvent); |
| 4297 | EventRecord event; |
| 4298 | long entryTick; |
| 4299 | long currentTick; |
| 4300 | long sleeppyTick; |
| 4301 | |
| 4302 | /* If we are providing life feedback with the scrollbar, |
| 4303 | * we don't want to try to wait for an event, or else |
| 4304 | * there won't be any life feedback. |
| 4305 | */ |
| 4306 | if (dragged_sb != NULL) |
| 4307 | return FAIL; |
| 4308 | /* TODO: Check if FAIL is the proper return code */ |
| 4309 | |
| 4310 | entryTick = TickCount(); |
| 4311 | |
| 4312 | allow_scrollbar = TRUE; |
| 4313 | |
| 4314 | do |
| 4315 | { |
| 4316 | /* if (dragRectControl == kCreateEmpty) |
| 4317 | { |
| 4318 | dragRgn = NULL; |
| 4319 | dragRectControl = kNothing; |
| 4320 | } |
| 4321 | else*/ if (dragRectControl == kCreateRect) |
| 4322 | { |
| 4323 | dragRgn = cursorRgn; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4324 | RectRgn(dragRgn, &dragRect); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4325 | dragRectControl = kNothing; |
| 4326 | } |
| 4327 | /* |
| 4328 | * Don't use gui_mch_update() because then we will spin-lock until a |
| 4329 | * char arrives, instead we use WaitNextEventWrp() to hang until an |
| 4330 | * event arrives. No need to check for input_buf_full because we are |
| 4331 | * returning as soon as it contains a single char. |
| 4332 | */ |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 4333 | /* TODO: reduce wtime accordingly??? */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4334 | if (wtime > -1) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 4335 | sleeppyTick = 60 * wtime / 1000; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4336 | else |
| 4337 | sleeppyTick = 32767; |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 4338 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4339 | if (WaitNextEventWrp(mask, &event, sleeppyTick, dragRgn)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4340 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 4341 | gui_mac_handle_event(&event); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4342 | if (input_available()) |
| 4343 | { |
| 4344 | allow_scrollbar = FALSE; |
| 4345 | return OK; |
| 4346 | } |
| 4347 | } |
| 4348 | currentTick = TickCount(); |
| 4349 | } |
| 4350 | while ((wtime == -1) || ((currentTick - entryTick) < 60*wtime/1000)); |
| 4351 | |
| 4352 | allow_scrollbar = FALSE; |
| 4353 | return FAIL; |
| 4354 | } |
| 4355 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4356 | /* |
| 4357 | * Output routines. |
| 4358 | */ |
| 4359 | |
| 4360 | /* Flush any output to the screen */ |
| 4361 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4362 | gui_mch_flush(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4363 | { |
| 4364 | /* TODO: Is anything needed here? */ |
| 4365 | } |
| 4366 | |
| 4367 | /* |
| 4368 | * Clear a rectangular region of the screen from text pos (row1, col1) to |
| 4369 | * (row2, col2) inclusive. |
| 4370 | */ |
| 4371 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4372 | gui_mch_clear_block(int row1, int col1, int row2, int col2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4373 | { |
| 4374 | Rect rc; |
| 4375 | |
| 4376 | /* |
| 4377 | * Clear one extra pixel at the far right, for when bold characters have |
| 4378 | * spilled over to the next column. |
| 4379 | */ |
| 4380 | rc.left = FILL_X(col1); |
| 4381 | rc.top = FILL_Y(row1); |
| 4382 | rc.right = FILL_X(col2 + 1) + (col2 == Columns - 1); |
| 4383 | rc.bottom = FILL_Y(row2 + 1); |
| 4384 | |
| 4385 | gui_mch_set_bg_color(gui.back_pixel); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4386 | EraseRect(&rc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4387 | } |
| 4388 | |
| 4389 | /* |
| 4390 | * Clear the whole text window. |
| 4391 | */ |
| 4392 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4393 | gui_mch_clear_all(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4394 | { |
| 4395 | Rect rc; |
| 4396 | |
| 4397 | rc.left = 0; |
| 4398 | rc.top = 0; |
| 4399 | rc.right = Columns * gui.char_width + 2 * gui.border_width; |
| 4400 | rc.bottom = Rows * gui.char_height + 2 * gui.border_width; |
| 4401 | |
| 4402 | gui_mch_set_bg_color(gui.back_pixel); |
| 4403 | EraseRect(&rc); |
| 4404 | /* gui_mch_set_fg_color(gui.norm_pixel); |
| 4405 | FrameRect(&rc); |
| 4406 | */ |
| 4407 | } |
| 4408 | |
| 4409 | /* |
| 4410 | * Delete the given number of lines from the given row, scrolling up any |
| 4411 | * text further down within the scroll region. |
| 4412 | */ |
| 4413 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4414 | gui_mch_delete_lines(int row, int num_lines) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4415 | { |
| 4416 | Rect rc; |
| 4417 | |
| 4418 | /* changed without checking! */ |
| 4419 | rc.left = FILL_X(gui.scroll_region_left); |
| 4420 | rc.right = FILL_X(gui.scroll_region_right + 1); |
| 4421 | rc.top = FILL_Y(row); |
| 4422 | rc.bottom = FILL_Y(gui.scroll_region_bot + 1); |
| 4423 | |
| 4424 | gui_mch_set_bg_color(gui.back_pixel); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4425 | ScrollRect(&rc, 0, -num_lines * gui.char_height, (RgnHandle) nil); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4426 | |
| 4427 | gui_clear_block(gui.scroll_region_bot - num_lines + 1, |
| 4428 | gui.scroll_region_left, |
| 4429 | gui.scroll_region_bot, gui.scroll_region_right); |
| 4430 | } |
| 4431 | |
| 4432 | /* |
| 4433 | * Insert the given number of lines before the given row, scrolling down any |
| 4434 | * following text within the scroll region. |
| 4435 | */ |
| 4436 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4437 | gui_mch_insert_lines(int row, int num_lines) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4438 | { |
| 4439 | Rect rc; |
| 4440 | |
| 4441 | rc.left = FILL_X(gui.scroll_region_left); |
| 4442 | rc.right = FILL_X(gui.scroll_region_right + 1); |
| 4443 | rc.top = FILL_Y(row); |
| 4444 | rc.bottom = FILL_Y(gui.scroll_region_bot + 1); |
| 4445 | |
| 4446 | gui_mch_set_bg_color(gui.back_pixel); |
| 4447 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4448 | ScrollRect(&rc, 0, gui.char_height * num_lines, (RgnHandle) nil); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4449 | |
| 4450 | /* Update gui.cursor_row if the cursor scrolled or copied over */ |
| 4451 | if (gui.cursor_row >= gui.row |
| 4452 | && gui.cursor_col >= gui.scroll_region_left |
| 4453 | && gui.cursor_col <= gui.scroll_region_right) |
| 4454 | { |
| 4455 | if (gui.cursor_row <= gui.scroll_region_bot - num_lines) |
| 4456 | gui.cursor_row += num_lines; |
| 4457 | else if (gui.cursor_row <= gui.scroll_region_bot) |
| 4458 | gui.cursor_is_valid = FALSE; |
| 4459 | } |
| 4460 | |
| 4461 | gui_clear_block(row, gui.scroll_region_left, |
| 4462 | row + num_lines - 1, gui.scroll_region_right); |
| 4463 | } |
| 4464 | |
| 4465 | /* |
| 4466 | * TODO: add a vim format to the clipboard which remember |
| 4467 | * LINEWISE, CHARWISE, BLOCKWISE |
| 4468 | */ |
| 4469 | |
| 4470 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4471 | clip_mch_request_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4472 | { |
| 4473 | |
| 4474 | Handle textOfClip; |
Bram Moolenaar | 89cb5e0 | 2004-07-19 20:55:54 +0000 | [diff] [blame] | 4475 | int flavor = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4476 | Size scrapSize; |
| 4477 | ScrapFlavorFlags scrapFlags; |
| 4478 | ScrapRef scrap = nil; |
| 4479 | OSStatus error; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4480 | int type; |
| 4481 | char *searchCR; |
| 4482 | char_u *tempclip; |
| 4483 | |
| 4484 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4485 | error = GetCurrentScrap(&scrap); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4486 | if (error != noErr) |
| 4487 | return; |
| 4488 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4489 | error = GetScrapFlavorFlags(scrap, VIMSCRAPFLAVOR, &scrapFlags); |
| 4490 | if (error == noErr) |
| 4491 | { |
| 4492 | error = GetScrapFlavorSize(scrap, VIMSCRAPFLAVOR, &scrapSize); |
| 4493 | if (error == noErr && scrapSize > 1) |
| 4494 | flavor = 1; |
| 4495 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4496 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4497 | if (flavor == 0) |
| 4498 | { |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4499 | error = GetScrapFlavorFlags(scrap, SCRAPTEXTFLAVOR, &scrapFlags); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4500 | if (error != noErr) |
| 4501 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4502 | |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4503 | error = GetScrapFlavorSize(scrap, SCRAPTEXTFLAVOR, &scrapSize); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4504 | if (error != noErr) |
| 4505 | return; |
| 4506 | } |
| 4507 | |
| 4508 | ReserveMem(scrapSize); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4509 | |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4510 | /* In CARBON we don't need a Handle, a pointer is good */ |
| 4511 | textOfClip = NewHandle(scrapSize); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4512 | |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4513 | /* tempclip = lalloc(scrapSize+1, TRUE); */ |
| 4514 | HLock(textOfClip); |
| 4515 | error = GetScrapFlavorData(scrap, |
| 4516 | flavor ? VIMSCRAPFLAVOR : SCRAPTEXTFLAVOR, |
| 4517 | &scrapSize, *textOfClip); |
| 4518 | scrapSize -= flavor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4519 | |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4520 | if (flavor) |
| 4521 | type = **textOfClip; |
| 4522 | else |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 4523 | type = MAUTO; |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4524 | |
| 4525 | tempclip = lalloc(scrapSize + 1, TRUE); |
| 4526 | mch_memmove(tempclip, *textOfClip + flavor, scrapSize); |
| 4527 | tempclip[scrapSize] = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4528 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 4529 | #ifdef MACOS_CONVERT |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4530 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4531 | /* Convert from utf-16 (clipboard) */ |
| 4532 | size_t encLen = 0; |
| 4533 | char_u *to = mac_utf16_to_enc((UniChar *)tempclip, scrapSize, &encLen); |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4534 | |
| 4535 | if (to != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4536 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4537 | scrapSize = encLen; |
| 4538 | vim_free(tempclip); |
| 4539 | tempclip = to; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4540 | } |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4541 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4542 | #endif |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 4543 | |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4544 | searchCR = (char *)tempclip; |
| 4545 | while (searchCR != NULL) |
| 4546 | { |
| 4547 | searchCR = strchr(searchCR, '\r'); |
| 4548 | if (searchCR != NULL) |
| 4549 | *searchCR = '\n'; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4550 | } |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4551 | |
| 4552 | clip_yank_selection(type, tempclip, scrapSize, cbd); |
| 4553 | |
| 4554 | vim_free(tempclip); |
| 4555 | HUnlock(textOfClip); |
| 4556 | |
| 4557 | DisposeHandle(textOfClip); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4558 | } |
| 4559 | |
| 4560 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4561 | clip_mch_lose_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4562 | { |
| 4563 | /* |
| 4564 | * TODO: Really nothing to do? |
| 4565 | */ |
| 4566 | } |
| 4567 | |
| 4568 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4569 | clip_mch_own_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4570 | { |
| 4571 | return OK; |
| 4572 | } |
| 4573 | |
| 4574 | /* |
| 4575 | * Send the current selection to the clipboard. |
| 4576 | */ |
| 4577 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4578 | clip_mch_set_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4579 | { |
| 4580 | Handle textOfClip; |
| 4581 | long scrapSize; |
| 4582 | int type; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4583 | ScrapRef scrap; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4584 | |
| 4585 | char_u *str = NULL; |
| 4586 | |
| 4587 | if (!cbd->owned) |
| 4588 | return; |
| 4589 | |
| 4590 | clip_get_selection(cbd); |
| 4591 | |
| 4592 | /* |
| 4593 | * Once we set the clipboard, lose ownership. If another application sets |
| 4594 | * the clipboard, we don't want to think that we still own it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4595 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4596 | cbd->owned = FALSE; |
| 4597 | |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4598 | type = clip_convert_selection(&str, (long_u *)&scrapSize, cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4599 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 4600 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4601 | size_t utf16_len = 0; |
| 4602 | UniChar *to = mac_enc_to_utf16(str, scrapSize, &utf16_len); |
| 4603 | if (to) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4604 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4605 | scrapSize = utf16_len; |
| 4606 | vim_free(str); |
| 4607 | str = (char_u *)to; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4608 | } |
| 4609 | #endif |
| 4610 | |
| 4611 | if (type >= 0) |
| 4612 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4613 | ClearCurrentScrap(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4614 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4615 | textOfClip = NewHandle(scrapSize + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4616 | HLock(textOfClip); |
| 4617 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4618 | **textOfClip = type; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4619 | mch_memmove(*textOfClip + 1, str, scrapSize); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4620 | GetCurrentScrap(&scrap); |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 4621 | PutScrapFlavor(scrap, SCRAPTEXTFLAVOR, kScrapFlavorMaskNone, |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4622 | scrapSize, *textOfClip + 1); |
| 4623 | PutScrapFlavor(scrap, VIMSCRAPFLAVOR, kScrapFlavorMaskNone, |
| 4624 | scrapSize + 1, *textOfClip); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4625 | HUnlock(textOfClip); |
| 4626 | DisposeHandle(textOfClip); |
| 4627 | } |
| 4628 | |
| 4629 | vim_free(str); |
| 4630 | } |
| 4631 | |
| 4632 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4633 | gui_mch_set_text_area_pos(int x, int y, int w, int h) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4634 | { |
| 4635 | Rect VimBound; |
| 4636 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4637 | /* HideWindow(gui.VimWindow); */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4638 | GetWindowBounds(gui.VimWindow, kWindowGlobalPortRgn, &VimBound); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4639 | |
| 4640 | if (gui.which_scrollbars[SBAR_LEFT]) |
| 4641 | { |
| 4642 | VimBound.left = -gui.scrollbar_width + 1; |
| 4643 | } |
| 4644 | else |
| 4645 | { |
| 4646 | VimBound.left = 0; |
| 4647 | } |
| 4648 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4649 | SetWindowBounds(gui.VimWindow, kWindowGlobalPortRgn, &VimBound); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4650 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4651 | ShowWindow(gui.VimWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4652 | } |
| 4653 | |
| 4654 | /* |
| 4655 | * Menu stuff. |
| 4656 | */ |
| 4657 | |
| 4658 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4659 | gui_mch_enable_menu(int flag) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4660 | { |
| 4661 | /* |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 4662 | * Menu is always active. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4663 | */ |
| 4664 | } |
| 4665 | |
| 4666 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4667 | gui_mch_set_menu_pos(int x, int y, int w, int h) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4668 | { |
| 4669 | /* |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 4670 | * The menu is always at the top of the screen. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4671 | */ |
| 4672 | } |
| 4673 | |
| 4674 | /* |
| 4675 | * Add a sub menu to the menu bar. |
| 4676 | */ |
| 4677 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4678 | gui_mch_add_menu(vimmenu_T *menu, int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4679 | { |
| 4680 | /* |
| 4681 | * TODO: Try to use only menu_id instead of both menu_id and menu_handle. |
| 4682 | * TODO: use menu->mnemonic and menu->actext |
| 4683 | * TODO: Try to reuse menu id |
| 4684 | * Carbon Help suggest to use only id between 1 and 235 |
| 4685 | */ |
| 4686 | static long next_avail_id = 128; |
| 4687 | long menu_after_me = 0; /* Default to the end */ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4688 | #if defined(FEAT_MBYTE) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4689 | CFStringRef name; |
| 4690 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4691 | char_u *name; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4692 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4693 | short index; |
| 4694 | vimmenu_T *parent = menu->parent; |
| 4695 | vimmenu_T *brother = menu->next; |
| 4696 | |
| 4697 | /* Cannot add a menu if ... */ |
| 4698 | if ((parent != NULL && parent->submenu_id == 0)) |
| 4699 | return; |
| 4700 | |
| 4701 | /* menu ID greater than 1024 are reserved for ??? */ |
| 4702 | if (next_avail_id == 1024) |
| 4703 | return; |
| 4704 | |
| 4705 | /* My brother could be the PopUp, find my real brother */ |
| 4706 | while ((brother != NULL) && (!menu_is_menubar(brother->name))) |
| 4707 | brother = brother->next; |
| 4708 | |
| 4709 | /* Find where to insert the menu (for MenuBar) */ |
| 4710 | if ((parent == NULL) && (brother != NULL)) |
| 4711 | menu_after_me = brother->submenu_id; |
| 4712 | |
| 4713 | /* If the menu is not part of the menubar (and its submenus), add it 'nowhere' */ |
| 4714 | if (!menu_is_menubar(menu->name)) |
| 4715 | menu_after_me = hierMenu; |
| 4716 | |
| 4717 | /* Convert the name */ |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 4718 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4719 | name = menu_title_removing_mnemonic(menu); |
| 4720 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4721 | name = C2Pascal_save(menu->dname); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4722 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4723 | if (name == NULL) |
| 4724 | return; |
| 4725 | |
| 4726 | /* Create the menu unless it's the help menu */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4727 | { |
| 4728 | /* Carbon suggest use of |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4729 | * OSStatus CreateNewMenu(MenuID, MenuAttributes, MenuRef *); |
| 4730 | * OSStatus SetMenuTitle(MenuRef, ConstStr255Param title); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4731 | */ |
| 4732 | menu->submenu_id = next_avail_id; |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4733 | #if defined(FEAT_MBYTE) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4734 | if (CreateNewMenu(menu->submenu_id, 0, (MenuRef *)&menu->submenu_handle) == noErr) |
| 4735 | SetMenuTitleWithCFString((MenuRef)menu->submenu_handle, name); |
| 4736 | #else |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4737 | menu->submenu_handle = NewMenu(menu->submenu_id, name); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4738 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4739 | next_avail_id++; |
| 4740 | } |
| 4741 | |
| 4742 | if (parent == NULL) |
| 4743 | { |
| 4744 | /* Adding a menu to the menubar, or in the no mans land (for PopUp) */ |
| 4745 | |
| 4746 | /* TODO: Verify if we could only Insert Menu if really part of the |
| 4747 | * menubar The Inserted menu are scanned or the Command-key combos |
| 4748 | */ |
| 4749 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4750 | /* Insert the menu */ |
| 4751 | InsertMenu(menu->submenu_handle, menu_after_me); /* insert before */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4752 | #if 1 |
| 4753 | /* Vim should normally update it. TODO: verify */ |
| 4754 | DrawMenuBar(); |
| 4755 | #endif |
| 4756 | } |
| 4757 | else |
| 4758 | { |
| 4759 | /* Adding as a submenu */ |
| 4760 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4761 | index = gui_mac_get_menu_item_index(menu); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4762 | |
| 4763 | /* Call InsertMenuItem followed by SetMenuItemText |
| 4764 | * to avoid special character recognition by InsertMenuItem |
| 4765 | */ |
| 4766 | InsertMenuItem(parent->submenu_handle, "\p ", idx); /* afterItem */ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4767 | #if defined(FEAT_MBYTE) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4768 | SetMenuItemTextWithCFString(parent->submenu_handle, idx+1, name); |
| 4769 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4770 | SetMenuItemText(parent->submenu_handle, idx+1, name); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4771 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4772 | SetItemCmd(parent->submenu_handle, idx+1, 0x1B); |
| 4773 | SetItemMark(parent->submenu_handle, idx+1, menu->submenu_id); |
| 4774 | InsertMenu(menu->submenu_handle, hierMenu); |
| 4775 | } |
| 4776 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4777 | #if defined(FEAT_MBYTE) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4778 | CFRelease(name); |
| 4779 | #else |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4780 | vim_free(name); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4781 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4782 | |
| 4783 | #if 0 |
| 4784 | /* Done by Vim later on */ |
| 4785 | DrawMenuBar(); |
| 4786 | #endif |
| 4787 | } |
| 4788 | |
| 4789 | /* |
| 4790 | * Add a menu item to a menu |
| 4791 | */ |
| 4792 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4793 | gui_mch_add_menu_item(vimmenu_T *menu, int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4794 | { |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4795 | #if defined(FEAT_MBYTE) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4796 | CFStringRef name; |
| 4797 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4798 | char_u *name; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4799 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4800 | vimmenu_T *parent = menu->parent; |
| 4801 | int menu_inserted; |
| 4802 | |
| 4803 | /* Cannot add item, if the menu have not been created */ |
| 4804 | if (parent->submenu_id == 0) |
| 4805 | return; |
| 4806 | |
| 4807 | /* Could call SetMenuRefCon [CARBON] to associate with the Menu, |
| 4808 | for older OS call GetMenuItemData (menu, item, isCommandID?, data) */ |
| 4809 | |
| 4810 | /* Convert the name */ |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 4811 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4812 | name = menu_title_removing_mnemonic(menu); |
| 4813 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4814 | name = C2Pascal_save(menu->dname); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4815 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4816 | |
| 4817 | /* Where are just a menu item, so no handle, no id */ |
| 4818 | menu->submenu_id = 0; |
| 4819 | menu->submenu_handle = NULL; |
| 4820 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4821 | menu_inserted = 0; |
| 4822 | if (menu->actext) |
| 4823 | { |
| 4824 | /* If the accelerator text for the menu item looks like it describes |
| 4825 | * a command key (e.g., "<D-S-t>" or "<C-7>"), display it as the |
| 4826 | * item's command equivalent. |
| 4827 | */ |
| 4828 | int key = 0; |
| 4829 | int modifiers = 0; |
| 4830 | char_u *p_actext; |
| 4831 | |
| 4832 | p_actext = menu->actext; |
Bram Moolenaar | 35a4cfa | 2016-08-14 16:07:48 +0200 | [diff] [blame] | 4833 | key = find_special_key(&p_actext, &modifiers, FALSE, FALSE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4834 | if (*p_actext != 0) |
| 4835 | key = 0; /* error: trailing text */ |
| 4836 | /* find_special_key() returns a keycode with as many of the |
| 4837 | * specified modifiers as appropriate already applied (e.g., for |
| 4838 | * "<D-C-x>" it returns Ctrl-X as the keycode and MOD_MASK_CMD |
| 4839 | * as the only modifier). Since we want to display all of the |
| 4840 | * modifiers, we need to convert the keycode back to a printable |
| 4841 | * character plus modifiers. |
| 4842 | * TODO: Write an alternative find_special_key() that doesn't |
| 4843 | * apply modifiers. |
| 4844 | */ |
| 4845 | if (key > 0 && key < 32) |
| 4846 | { |
| 4847 | /* Convert a control key to an uppercase letter. Note that |
| 4848 | * by this point it is no longer possible to distinguish |
| 4849 | * between, e.g., Ctrl-S and Ctrl-Shift-S. |
| 4850 | */ |
| 4851 | modifiers |= MOD_MASK_CTRL; |
| 4852 | key += '@'; |
| 4853 | } |
| 4854 | /* If the keycode is an uppercase letter, set the Shift modifier. |
| 4855 | * If it is a lowercase letter, don't set the modifier, but convert |
| 4856 | * the letter to uppercase for display in the menu. |
| 4857 | */ |
| 4858 | else if (key >= 'A' && key <= 'Z') |
| 4859 | modifiers |= MOD_MASK_SHIFT; |
| 4860 | else if (key >= 'a' && key <= 'z') |
| 4861 | key += 'A' - 'a'; |
| 4862 | /* Note: keycodes below 0x22 are reserved by Apple. */ |
| 4863 | if (key >= 0x22 && vim_isprintc_strict(key)) |
| 4864 | { |
| 4865 | int valid = 1; |
| 4866 | char_u mac_mods = kMenuNoModifiers; |
| 4867 | /* Convert Vim modifier codes to Menu Manager equivalents. */ |
| 4868 | if (modifiers & MOD_MASK_SHIFT) |
| 4869 | mac_mods |= kMenuShiftModifier; |
| 4870 | if (modifiers & MOD_MASK_CTRL) |
| 4871 | mac_mods |= kMenuControlModifier; |
| 4872 | if (!(modifiers & MOD_MASK_CMD)) |
| 4873 | mac_mods |= kMenuNoCommandModifier; |
| 4874 | if (modifiers & MOD_MASK_ALT || modifiers & MOD_MASK_MULTI_CLICK) |
| 4875 | valid = 0; /* TODO: will Alt someday map to Option? */ |
| 4876 | if (valid) |
| 4877 | { |
| 4878 | char_u item_txt[10]; |
| 4879 | /* Insert the menu item after idx, with its command key. */ |
| 4880 | item_txt[0] = 3; item_txt[1] = ' '; item_txt[2] = '/'; |
| 4881 | item_txt[3] = key; |
| 4882 | InsertMenuItem(parent->submenu_handle, item_txt, idx); |
| 4883 | /* Set the modifier keys. */ |
| 4884 | SetMenuItemModifiers(parent->submenu_handle, idx+1, mac_mods); |
| 4885 | menu_inserted = 1; |
| 4886 | } |
| 4887 | } |
| 4888 | } |
| 4889 | /* Call InsertMenuItem followed by SetMenuItemText |
| 4890 | * to avoid special character recognition by InsertMenuItem |
| 4891 | */ |
| 4892 | if (!menu_inserted) |
| 4893 | InsertMenuItem(parent->submenu_handle, "\p ", idx); /* afterItem */ |
| 4894 | /* Set the menu item name. */ |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4895 | #if defined(FEAT_MBYTE) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4896 | SetMenuItemTextWithCFString(parent->submenu_handle, idx+1, name); |
| 4897 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4898 | SetMenuItemText(parent->submenu_handle, idx+1, name); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4899 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4900 | |
| 4901 | #if 0 |
| 4902 | /* Called by Vim */ |
| 4903 | DrawMenuBar(); |
| 4904 | #endif |
| 4905 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4906 | #if defined(FEAT_MBYTE) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4907 | CFRelease(name); |
| 4908 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4909 | /* TODO: Can name be freed? */ |
| 4910 | vim_free(name); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4911 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4912 | } |
| 4913 | |
| 4914 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4915 | gui_mch_toggle_tearoffs(int enable) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4916 | { |
| 4917 | /* no tearoff menus */ |
| 4918 | } |
| 4919 | |
| 4920 | /* |
| 4921 | * Destroy the machine specific menu widget. |
| 4922 | */ |
| 4923 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4924 | gui_mch_destroy_menu(vimmenu_T *menu) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4925 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4926 | short index = gui_mac_get_menu_item_index(menu); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4927 | |
| 4928 | if (index > 0) |
| 4929 | { |
| 4930 | if (menu->parent) |
| 4931 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4932 | { |
| 4933 | /* For now just don't delete help menu items. (Huh? Dany) */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4934 | DeleteMenuItem(menu->parent->submenu_handle, index); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4935 | |
| 4936 | /* Delete the Menu if it was a hierarchical Menu */ |
| 4937 | if (menu->submenu_id != 0) |
| 4938 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4939 | DeleteMenu(menu->submenu_id); |
| 4940 | DisposeMenu(menu->submenu_handle); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4941 | } |
| 4942 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4943 | } |
| 4944 | #ifdef DEBUG_MAC_MENU |
| 4945 | else |
| 4946 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4947 | printf("gmdm 2\n"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4948 | } |
| 4949 | #endif |
| 4950 | } |
| 4951 | else |
| 4952 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4953 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4954 | DeleteMenu(menu->submenu_id); |
| 4955 | DisposeMenu(menu->submenu_handle); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4956 | } |
| 4957 | } |
| 4958 | /* Shouldn't this be already done by Vim. TODO: Check */ |
| 4959 | DrawMenuBar(); |
| 4960 | } |
| 4961 | |
| 4962 | /* |
| 4963 | * Make a menu either grey or not grey. |
| 4964 | */ |
| 4965 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4966 | gui_mch_menu_grey(vimmenu_T *menu, int grey) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4967 | { |
| 4968 | /* TODO: Check if menu really exists */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4969 | short index = gui_mac_get_menu_item_index(menu); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4970 | /* |
| 4971 | index = menu->index; |
| 4972 | */ |
| 4973 | if (grey) |
| 4974 | { |
| 4975 | if (menu->children) |
| 4976 | DisableMenuItem(menu->submenu_handle, index); |
| 4977 | if (menu->parent) |
| 4978 | if (menu->parent->submenu_handle) |
| 4979 | DisableMenuItem(menu->parent->submenu_handle, index); |
| 4980 | } |
| 4981 | else |
| 4982 | { |
| 4983 | if (menu->children) |
| 4984 | EnableMenuItem(menu->submenu_handle, index); |
| 4985 | if (menu->parent) |
| 4986 | if (menu->parent->submenu_handle) |
| 4987 | EnableMenuItem(menu->parent->submenu_handle, index); |
| 4988 | } |
| 4989 | } |
| 4990 | |
| 4991 | /* |
| 4992 | * Make menu item hidden or not hidden |
| 4993 | */ |
| 4994 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 4995 | gui_mch_menu_hidden(vimmenu_T *menu, int hidden) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4996 | { |
| 4997 | /* There's no hidden mode on MacOS */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4998 | gui_mch_menu_grey(menu, hidden); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4999 | } |
| 5000 | |
| 5001 | |
| 5002 | /* |
| 5003 | * This is called after setting all the menus to grey/hidden or not. |
| 5004 | */ |
| 5005 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5006 | gui_mch_draw_menubar(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5007 | { |
| 5008 | DrawMenuBar(); |
| 5009 | } |
| 5010 | |
| 5011 | |
| 5012 | /* |
| 5013 | * Scrollbar stuff. |
| 5014 | */ |
| 5015 | |
| 5016 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5017 | gui_mch_enable_scrollbar( |
| 5018 | scrollbar_T *sb, |
| 5019 | int flag) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5020 | { |
| 5021 | if (flag) |
| 5022 | ShowControl(sb->id); |
| 5023 | else |
| 5024 | HideControl(sb->id); |
| 5025 | |
| 5026 | #ifdef DEBUG_MAC_SB |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5027 | printf("enb_sb (%x) %x\n",sb->id, flag); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5028 | #endif |
| 5029 | } |
| 5030 | |
| 5031 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5032 | gui_mch_set_scrollbar_thumb( |
| 5033 | scrollbar_T *sb, |
| 5034 | long val, |
| 5035 | long size, |
| 5036 | long max) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5037 | { |
| 5038 | SetControl32BitMaximum (sb->id, max); |
| 5039 | SetControl32BitMinimum (sb->id, 0); |
| 5040 | SetControl32BitValue (sb->id, val); |
Bram Moolenaar | bbe8c3f | 2007-04-26 16:40:56 +0000 | [diff] [blame] | 5041 | SetControlViewSize (sb->id, size); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5042 | #ifdef DEBUG_MAC_SB |
Bram Moolenaar | ea03459 | 2016-06-02 22:27:08 +0200 | [diff] [blame] | 5043 | printf("thumb_sb (%x) %lx, %lx,%lx\n",sb->id, val, size, max); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5044 | #endif |
| 5045 | } |
| 5046 | |
| 5047 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5048 | gui_mch_set_scrollbar_pos( |
| 5049 | scrollbar_T *sb, |
| 5050 | int x, |
| 5051 | int y, |
| 5052 | int w, |
| 5053 | int h) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5054 | { |
| 5055 | gui_mch_set_bg_color(gui.back_pixel); |
| 5056 | /* if (gui.which_scrollbars[SBAR_LEFT]) |
| 5057 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5058 | MoveControl(sb->id, x-16, y); |
| 5059 | SizeControl(sb->id, w + 1, h); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5060 | } |
| 5061 | else |
| 5062 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5063 | MoveControl(sb->id, x, y); |
| 5064 | SizeControl(sb->id, w + 1, h); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5065 | }*/ |
| 5066 | if (sb == &gui.bottom_sbar) |
| 5067 | h += 1; |
| 5068 | else |
| 5069 | w += 1; |
| 5070 | |
| 5071 | if (gui.which_scrollbars[SBAR_LEFT]) |
| 5072 | x -= 15; |
| 5073 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5074 | MoveControl(sb->id, x, y); |
| 5075 | SizeControl(sb->id, w, h); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5076 | #ifdef DEBUG_MAC_SB |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5077 | printf("size_sb (%x) %x, %x, %x, %x\n",sb->id, x, y, w, h); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5078 | #endif |
| 5079 | } |
| 5080 | |
| 5081 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5082 | gui_mch_create_scrollbar( |
| 5083 | scrollbar_T *sb, |
| 5084 | int orient) /* SBAR_VERT or SBAR_HORIZ */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5085 | { |
| 5086 | Rect bounds; |
| 5087 | |
| 5088 | bounds.top = -16; |
| 5089 | bounds.bottom = -10; |
| 5090 | bounds.right = -10; |
| 5091 | bounds.left = -16; |
| 5092 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5093 | sb->id = NewControl(gui.VimWindow, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5094 | &bounds, |
| 5095 | "\pScrollBar", |
| 5096 | TRUE, |
| 5097 | 0, /* current*/ |
| 5098 | 0, /* top */ |
| 5099 | 0, /* bottom */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5100 | kControlScrollBarLiveProc, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5101 | (long) sb->ident); |
| 5102 | #ifdef DEBUG_MAC_SB |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5103 | printf("create_sb (%x) %x\n",sb->id, orient); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5104 | #endif |
| 5105 | } |
| 5106 | |
| 5107 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5108 | gui_mch_destroy_scrollbar(scrollbar_T *sb) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5109 | { |
| 5110 | gui_mch_set_bg_color(gui.back_pixel); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5111 | DisposeControl(sb->id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5112 | #ifdef DEBUG_MAC_SB |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5113 | printf("dest_sb (%x) \n",sb->id); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5114 | #endif |
| 5115 | } |
| 5116 | |
Bram Moolenaar | 703a804 | 2016-06-04 16:24:32 +0200 | [diff] [blame] | 5117 | int |
| 5118 | gui_mch_is_blinking(void) |
| 5119 | { |
| 5120 | return FALSE; |
| 5121 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5122 | |
Bram Moolenaar | 9d5d3c9 | 2016-07-07 16:43:02 +0200 | [diff] [blame] | 5123 | int |
| 5124 | gui_mch_is_blink_off(void) |
| 5125 | { |
| 5126 | return FALSE; |
| 5127 | } |
| 5128 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5129 | /* |
| 5130 | * Cursor blink functions. |
| 5131 | * |
| 5132 | * This is a simple state machine: |
| 5133 | * BLINK_NONE not blinking at all |
| 5134 | * BLINK_OFF blinking, cursor is not shown |
| 5135 | * BLINK_ON blinking, cursor is shown |
| 5136 | */ |
| 5137 | void |
| 5138 | gui_mch_set_blinking(long wait, long on, long off) |
| 5139 | { |
| 5140 | /* TODO: TODO: TODO: TODO: */ |
| 5141 | /* blink_waittime = wait; |
| 5142 | blink_ontime = on; |
| 5143 | blink_offtime = off;*/ |
| 5144 | } |
| 5145 | |
| 5146 | /* |
| 5147 | * Stop the cursor blinking. Show the cursor if it wasn't shown. |
| 5148 | */ |
| 5149 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5150 | gui_mch_stop_blink(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5151 | { |
| 5152 | gui_update_cursor(TRUE, FALSE); |
| 5153 | /* TODO: TODO: TODO: TODO: */ |
| 5154 | /* gui_w32_rm_blink_timer(); |
| 5155 | if (blink_state == BLINK_OFF) |
| 5156 | gui_update_cursor(TRUE, FALSE); |
| 5157 | blink_state = BLINK_NONE;*/ |
| 5158 | } |
| 5159 | |
| 5160 | /* |
| 5161 | * Start the cursor blinking. If it was already blinking, this restarts the |
| 5162 | * waiting time and shows the cursor. |
| 5163 | */ |
| 5164 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5165 | gui_mch_start_blink(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5166 | { |
| 5167 | gui_update_cursor(TRUE, FALSE); |
| 5168 | /* TODO: TODO: TODO: TODO: */ |
| 5169 | /* gui_w32_rm_blink_timer(); */ |
| 5170 | |
| 5171 | /* Only switch blinking on if none of the times is zero */ |
| 5172 | /* if (blink_waittime && blink_ontime && blink_offtime) |
| 5173 | { |
| 5174 | blink_timer = SetTimer(NULL, 0, (UINT)blink_waittime, |
| 5175 | (TIMERPROC)_OnBlinkTimer); |
| 5176 | blink_state = BLINK_ON; |
| 5177 | gui_update_cursor(TRUE, FALSE); |
| 5178 | }*/ |
| 5179 | } |
| 5180 | |
| 5181 | /* |
| 5182 | * Return the RGB value of a pixel as long. |
| 5183 | */ |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 5184 | guicolor_T |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5185 | gui_mch_get_rgb(guicolor_T pixel) |
| 5186 | { |
Bram Moolenaar | 1b58cdd | 2016-08-22 23:04:33 +0200 | [diff] [blame] | 5187 | return (guicolor_T)((Red(pixel) << 16) + (Green(pixel) << 8) + Blue(pixel)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5188 | } |
| 5189 | |
| 5190 | |
| 5191 | |
| 5192 | #ifdef FEAT_BROWSE |
| 5193 | /* |
| 5194 | * Pop open a file browser and return the file selected, in allocated memory, |
| 5195 | * or NULL if Cancel is hit. |
| 5196 | * saving - TRUE if the file will be saved to, FALSE if it will be opened. |
| 5197 | * title - Title message for the file browser dialog. |
| 5198 | * dflt - Default name of file. |
| 5199 | * ext - Default extension to be added to files without extensions. |
| 5200 | * initdir - directory in which to open the browser (NULL = current dir) |
| 5201 | * filter - Filter for matched files to choose from. |
| 5202 | * Has a format like this: |
| 5203 | * "C Files (*.c)\0*.c\0" |
| 5204 | * "All Files\0*.*\0\0" |
| 5205 | * If these two strings were concatenated, then a choice of two file |
| 5206 | * filters will be selectable to the user. Then only matching files will |
| 5207 | * be shown in the browser. If NULL, the default allows all files. |
| 5208 | * |
| 5209 | * *NOTE* - the filter string must be terminated with TWO nulls. |
| 5210 | */ |
| 5211 | char_u * |
| 5212 | gui_mch_browse( |
| 5213 | int saving, |
| 5214 | char_u *title, |
| 5215 | char_u *dflt, |
| 5216 | char_u *ext, |
| 5217 | char_u *initdir, |
| 5218 | char_u *filter) |
| 5219 | { |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 5220 | /* TODO: Add Ammon's safety check (Dany) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5221 | NavReplyRecord reply; |
| 5222 | char_u *fname = NULL; |
| 5223 | char_u **fnames = NULL; |
| 5224 | long numFiles; |
| 5225 | NavDialogOptions navOptions; |
| 5226 | OSErr error; |
| 5227 | |
| 5228 | /* Get Navigation Service Defaults value */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5229 | NavGetDefaultDialogOptions(&navOptions); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5230 | |
| 5231 | |
| 5232 | /* TODO: If we get a :browse args, set the Multiple bit. */ |
| 5233 | navOptions.dialogOptionFlags = kNavAllowInvisibleFiles |
| 5234 | | kNavDontAutoTranslate |
| 5235 | | kNavDontAddTranslateItems |
| 5236 | /* | kNavAllowMultipleFiles */ |
| 5237 | | kNavAllowStationery; |
| 5238 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5239 | (void) C2PascalString(title, &navOptions.message); |
| 5240 | (void) C2PascalString(dflt, &navOptions.savedFileName); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5241 | /* Could set clientName? |
| 5242 | * windowTitle? (there's no title bar?) |
| 5243 | */ |
| 5244 | |
| 5245 | if (saving) |
| 5246 | { |
| 5247 | /* Change first parm AEDesc (typeFSS) *defaultLocation to match dflt */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5248 | NavPutFile(NULL, &reply, &navOptions, NULL, 'TEXT', 'VIM!', NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5249 | if (!reply.validRecord) |
| 5250 | return NULL; |
| 5251 | } |
| 5252 | else |
| 5253 | { |
| 5254 | /* Change first parm AEDesc (typeFSS) *defaultLocation to match dflt */ |
| 5255 | NavGetFile(NULL, &reply, &navOptions, NULL, NULL, NULL, NULL, NULL); |
| 5256 | if (!reply.validRecord) |
| 5257 | return NULL; |
| 5258 | } |
| 5259 | |
| 5260 | fnames = new_fnames_from_AEDesc(&reply.selection, &numFiles, &error); |
| 5261 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5262 | NavDisposeReply(&reply); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5263 | |
| 5264 | if (fnames) |
| 5265 | { |
| 5266 | fname = fnames[0]; |
| 5267 | vim_free(fnames); |
| 5268 | } |
| 5269 | |
| 5270 | /* TODO: Shorten the file name if possible */ |
| 5271 | return fname; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5272 | } |
| 5273 | #endif /* FEAT_BROWSE */ |
| 5274 | |
| 5275 | #ifdef FEAT_GUI_DIALOG |
| 5276 | /* |
| 5277 | * Stuff for dialogues |
| 5278 | */ |
| 5279 | |
| 5280 | /* |
| 5281 | * Create a dialogue dynamically from the parameter strings. |
| 5282 | * type = type of dialogue (question, alert, etc.) |
| 5283 | * title = dialogue title. may be NULL for default title. |
| 5284 | * message = text to display. Dialogue sizes to accommodate it. |
| 5285 | * buttons = '\n' separated list of button captions, default first. |
| 5286 | * dfltbutton = number of default button. |
| 5287 | * |
| 5288 | * This routine returns 1 if the first button is pressed, |
| 5289 | * 2 for the second, etc. |
| 5290 | * |
| 5291 | * 0 indicates Esc was pressed. |
| 5292 | * -1 for unexpected error |
| 5293 | * |
| 5294 | * If stubbing out this fn, return 1. |
| 5295 | */ |
| 5296 | |
| 5297 | typedef struct |
| 5298 | { |
| 5299 | short idx; |
| 5300 | short width; /* Size of the text in pixel */ |
| 5301 | Rect box; |
| 5302 | } vgmDlgItm; /* Vim Gui_Mac.c Dialog Item */ |
| 5303 | |
| 5304 | #define MoveRectTo(r,x,y) OffsetRect(r,x-r->left,y-r->top) |
| 5305 | |
| 5306 | static void |
| 5307 | macMoveDialogItem( |
| 5308 | DialogRef theDialog, |
| 5309 | short itemNumber, |
| 5310 | short X, |
| 5311 | short Y, |
| 5312 | Rect *inBox) |
| 5313 | { |
| 5314 | #if 0 /* USE_CARBONIZED */ |
| 5315 | /* Untested */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5316 | MoveDialogItem(theDialog, itemNumber, X, Y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5317 | if (inBox != nil) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5318 | GetDialogItem(theDialog, itemNumber, &itemType, &itemHandle, inBox); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5319 | #else |
| 5320 | short itemType; |
| 5321 | Handle itemHandle; |
| 5322 | Rect localBox; |
| 5323 | Rect *itemBox = &localBox; |
| 5324 | |
| 5325 | if (inBox != nil) |
| 5326 | itemBox = inBox; |
| 5327 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5328 | GetDialogItem(theDialog, itemNumber, &itemType, &itemHandle, itemBox); |
| 5329 | OffsetRect(itemBox, -itemBox->left, -itemBox->top); |
| 5330 | OffsetRect(itemBox, X, Y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5331 | /* To move a control (like a button) we need to call both |
| 5332 | * MoveControl and SetDialogItem. FAQ 6-18 */ |
| 5333 | if (1) /*(itemType & kControlDialogItem) */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5334 | MoveControl((ControlRef) itemHandle, X, Y); |
| 5335 | SetDialogItem(theDialog, itemNumber, itemType, itemHandle, itemBox); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5336 | #endif |
| 5337 | } |
| 5338 | |
| 5339 | static void |
| 5340 | macSizeDialogItem( |
| 5341 | DialogRef theDialog, |
| 5342 | short itemNumber, |
| 5343 | short width, |
| 5344 | short height) |
| 5345 | { |
| 5346 | short itemType; |
| 5347 | Handle itemHandle; |
| 5348 | Rect itemBox; |
| 5349 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5350 | GetDialogItem(theDialog, itemNumber, &itemType, &itemHandle, &itemBox); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5351 | |
| 5352 | /* When width or height is zero do not change it */ |
| 5353 | if (width == 0) |
| 5354 | width = itemBox.right - itemBox.left; |
| 5355 | if (height == 0) |
| 5356 | height = itemBox.bottom - itemBox.top; |
| 5357 | |
| 5358 | #if 0 /* USE_CARBONIZED */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5359 | SizeDialogItem(theDialog, itemNumber, width, height); /* Untested */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5360 | #else |
| 5361 | /* Resize the bounding box */ |
| 5362 | itemBox.right = itemBox.left + width; |
| 5363 | itemBox.bottom = itemBox.top + height; |
| 5364 | |
| 5365 | /* To resize a control (like a button) we need to call both |
| 5366 | * SizeControl and SetDialogItem. (deducted from FAQ 6-18) */ |
| 5367 | if (itemType & kControlDialogItem) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5368 | SizeControl((ControlRef) itemHandle, width, height); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5369 | |
| 5370 | /* Configure back the item */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5371 | SetDialogItem(theDialog, itemNumber, itemType, itemHandle, &itemBox); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5372 | #endif |
| 5373 | } |
| 5374 | |
| 5375 | static void |
| 5376 | macSetDialogItemText( |
| 5377 | DialogRef theDialog, |
| 5378 | short itemNumber, |
| 5379 | Str255 itemName) |
| 5380 | { |
| 5381 | short itemType; |
| 5382 | Handle itemHandle; |
| 5383 | Rect itemBox; |
| 5384 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5385 | GetDialogItem(theDialog, itemNumber, &itemType, &itemHandle, &itemBox); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5386 | |
| 5387 | if (itemType & kControlDialogItem) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5388 | SetControlTitle((ControlRef) itemHandle, itemName); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5389 | else |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5390 | SetDialogItemText(itemHandle, itemName); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5391 | } |
| 5392 | |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5393 | |
| 5394 | /* ModalDialog() handler for message dialogs that have hotkey accelerators. |
| 5395 | * Expects a mapping of hotkey char to control index in gDialogHotKeys; |
| 5396 | * setting gDialogHotKeys to NULL disables any hotkey handling. |
| 5397 | */ |
| 5398 | static pascal Boolean |
| 5399 | DialogHotkeyFilterProc ( |
| 5400 | DialogRef theDialog, |
| 5401 | EventRecord *event, |
| 5402 | DialogItemIndex *itemHit) |
| 5403 | { |
| 5404 | char_u keyHit; |
| 5405 | |
| 5406 | if (event->what == keyDown || event->what == autoKey) |
| 5407 | { |
| 5408 | keyHit = (event->message & charCodeMask); |
| 5409 | |
| 5410 | if (gDialogHotKeys && gDialogHotKeys[keyHit]) |
| 5411 | { |
| 5412 | #ifdef DEBUG_MAC_DIALOG_HOTKEYS |
| 5413 | printf("user pressed hotkey '%c' --> item %d\n", keyHit, gDialogHotKeys[keyHit]); |
| 5414 | #endif |
| 5415 | *itemHit = gDialogHotKeys[keyHit]; |
| 5416 | |
| 5417 | /* When handing off to StdFilterProc, pretend that the user |
| 5418 | * clicked the control manually. Note that this is also supposed |
| 5419 | * to cause the button to hilite briefly (to give some user |
| 5420 | * feedback), but this seems not to actually work (or it's too |
| 5421 | * fast to be seen). |
| 5422 | */ |
| 5423 | event->what = kEventControlSimulateHit; |
| 5424 | |
| 5425 | return true; /* we took care of it */ |
| 5426 | } |
| 5427 | |
| 5428 | /* Defer to the OS's standard behavior for this event. |
| 5429 | * This ensures that Enter will still activate the default button. */ |
| 5430 | return StdFilterProc(theDialog, event, itemHit); |
| 5431 | } |
| 5432 | return false; /* Let ModalDialog deal with it */ |
| 5433 | } |
| 5434 | |
| 5435 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5436 | /* TODO: There have been some crashes with dialogs, check your inbox |
| 5437 | * (Jussi) |
| 5438 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5439 | int |
| 5440 | gui_mch_dialog( |
| 5441 | int type, |
| 5442 | char_u *title, |
| 5443 | char_u *message, |
| 5444 | char_u *buttons, |
| 5445 | int dfltbutton, |
Bram Moolenaar | d2c340a | 2011-01-17 20:08:11 +0100 | [diff] [blame] | 5446 | char_u *textfield, |
| 5447 | int ex_cmd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5448 | { |
| 5449 | Handle buttonDITL; |
| 5450 | Handle iconDITL; |
| 5451 | Handle inputDITL; |
| 5452 | Handle messageDITL; |
| 5453 | Handle itemHandle; |
| 5454 | Handle iconHandle; |
| 5455 | DialogPtr theDialog; |
| 5456 | char_u len; |
| 5457 | char_u PascalTitle[256]; /* place holder for the title */ |
| 5458 | char_u name[256]; |
| 5459 | GrafPtr oldPort; |
| 5460 | short itemHit; |
| 5461 | char_u *buttonChar; |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5462 | short hotKeys[256]; /* map of hotkey -> control ID */ |
| 5463 | char_u aHotKey; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5464 | Rect box; |
| 5465 | short button; |
| 5466 | short lastButton; |
| 5467 | short itemType; |
| 5468 | short useIcon; |
| 5469 | short width; |
Bram Moolenaar | ec83173 | 2007-08-30 10:51:14 +0000 | [diff] [blame] | 5470 | short totalButtonWidth = 0; /* the width of all buttons together |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 5471 | including spacing */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5472 | short widestButton = 0; |
| 5473 | short dfltButtonEdge = 20; /* gut feeling */ |
| 5474 | short dfltElementSpacing = 13; /* from IM:V.2-29 */ |
| 5475 | short dfltIconSideSpace = 23; /* from IM:V.2-29 */ |
| 5476 | short maximumWidth = 400; /* gut feeling */ |
| 5477 | short maxButtonWidth = 175; /* gut feeling */ |
| 5478 | |
| 5479 | short vertical; |
| 5480 | short dialogHeight; |
| 5481 | short messageLines = 3; |
| 5482 | FontInfo textFontInfo; |
| 5483 | |
| 5484 | vgmDlgItm iconItm; |
| 5485 | vgmDlgItm messageItm; |
| 5486 | vgmDlgItm inputItm; |
| 5487 | vgmDlgItm buttonItm; |
| 5488 | |
| 5489 | WindowRef theWindow; |
| 5490 | |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5491 | ModalFilterUPP dialogUPP; |
| 5492 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5493 | /* Check 'v' flag in 'guioptions': vertical button placement. */ |
| 5494 | vertical = (vim_strchr(p_go, GO_VERTICAL) != NULL); |
| 5495 | |
| 5496 | /* Create a new Dialog Box from template. */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5497 | theDialog = GetNewDialog(129, nil, (WindowRef) -1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5498 | |
| 5499 | /* Get the WindowRef */ |
| 5500 | theWindow = GetDialogWindow(theDialog); |
| 5501 | |
| 5502 | /* Hide the window. |
| 5503 | * 1. to avoid seeing slow drawing |
| 5504 | * 2. to prevent a problem seen while moving dialog item |
| 5505 | * within a visible window. (non-Carbon MacOS 9) |
| 5506 | * Could be avoided by changing the resource. |
| 5507 | */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5508 | HideWindow(theWindow); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5509 | |
| 5510 | /* Change the graphical port to the dialog, |
| 5511 | * so we can measure the text with the proper font */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5512 | GetPort(&oldPort); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5513 | SetPortDialogPort(theDialog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5514 | |
| 5515 | /* Get the info about the default text, |
| 5516 | * used to calculate the height of the message |
| 5517 | * and of the text field */ |
| 5518 | GetFontInfo(&textFontInfo); |
| 5519 | |
| 5520 | /* Set the dialog title */ |
| 5521 | if (title != NULL) |
| 5522 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5523 | (void) C2PascalString(title, &PascalTitle); |
| 5524 | SetWTitle(theWindow, PascalTitle); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5525 | } |
| 5526 | |
| 5527 | /* Creates the buttons and add them to the Dialog Box. */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5528 | buttonDITL = GetResource('DITL', 130); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5529 | buttonChar = buttons; |
| 5530 | button = 0; |
| 5531 | |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5532 | /* initialize the hotkey mapping */ |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 5533 | vim_memset(hotKeys, 0, sizeof(hotKeys)); |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5534 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5535 | for (;*buttonChar != 0;) |
| 5536 | { |
| 5537 | /* Get the name of the button */ |
| 5538 | button++; |
| 5539 | len = 0; |
| 5540 | for (;((*buttonChar != DLG_BUTTON_SEP) && (*buttonChar != 0) && (len < 255)); buttonChar++) |
| 5541 | { |
| 5542 | if (*buttonChar != DLG_HOTKEY_CHAR) |
| 5543 | name[++len] = *buttonChar; |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5544 | else |
| 5545 | { |
| 5546 | aHotKey = (char_u)*(buttonChar+1); |
| 5547 | if (aHotKey >= 'A' && aHotKey <= 'Z') |
| 5548 | aHotKey = (char_u)((int)aHotKey + (int)'a' - (int)'A'); |
| 5549 | hotKeys[aHotKey] = button; |
| 5550 | #ifdef DEBUG_MAC_DIALOG_HOTKEYS |
| 5551 | printf("### hotKey for button %d is '%c'\n", button, aHotKey); |
| 5552 | #endif |
| 5553 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5554 | } |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5555 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5556 | if (*buttonChar != 0) |
| 5557 | buttonChar++; |
| 5558 | name[0] = len; |
| 5559 | |
| 5560 | /* Add the button */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5561 | AppendDITL(theDialog, buttonDITL, overlayDITL); /* appendDITLRight); */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5562 | |
| 5563 | /* Change the button's name */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5564 | macSetDialogItemText(theDialog, button, name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5565 | |
| 5566 | /* Resize the button to fit its name */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5567 | width = StringWidth(name) + 2 * dfltButtonEdge; |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 5568 | /* Limit the size of any button to an acceptable value. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5569 | /* TODO: Should be based on the message width */ |
| 5570 | if (width > maxButtonWidth) |
| 5571 | width = maxButtonWidth; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5572 | macSizeDialogItem(theDialog, button, width, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5573 | |
| 5574 | totalButtonWidth += width; |
| 5575 | |
| 5576 | if (width > widestButton) |
| 5577 | widestButton = width; |
| 5578 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5579 | ReleaseResource(buttonDITL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5580 | lastButton = button; |
| 5581 | |
| 5582 | /* Add the icon to the Dialog Box. */ |
| 5583 | iconItm.idx = lastButton + 1; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5584 | iconDITL = GetResource('DITL', 131); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5585 | switch (type) |
| 5586 | { |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 5587 | case VIM_GENERIC: |
| 5588 | case VIM_INFO: |
| 5589 | case VIM_QUESTION: useIcon = kNoteIcon; break; |
| 5590 | case VIM_WARNING: useIcon = kCautionIcon; break; |
| 5591 | case VIM_ERROR: useIcon = kStopIcon; break; |
Bram Moolenaar | 8d4eecc | 2012-11-20 17:19:01 +0100 | [diff] [blame] | 5592 | default: useIcon = kStopIcon; |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 5593 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5594 | AppendDITL(theDialog, iconDITL, overlayDITL); |
| 5595 | ReleaseResource(iconDITL); |
| 5596 | GetDialogItem(theDialog, iconItm.idx, &itemType, &itemHandle, &box); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5597 | /* TODO: Should the item be freed? */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5598 | iconHandle = GetIcon(useIcon); |
| 5599 | SetDialogItem(theDialog, iconItm.idx, itemType, iconHandle, &box); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5600 | |
| 5601 | /* Add the message to the Dialog box. */ |
| 5602 | messageItm.idx = lastButton + 2; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5603 | messageDITL = GetResource('DITL', 132); |
| 5604 | AppendDITL(theDialog, messageDITL, overlayDITL); |
| 5605 | ReleaseResource(messageDITL); |
| 5606 | GetDialogItem(theDialog, messageItm.idx, &itemType, &itemHandle, &box); |
| 5607 | (void) C2PascalString(message, &name); |
| 5608 | SetDialogItemText(itemHandle, name); |
| 5609 | messageItm.width = StringWidth(name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5610 | |
| 5611 | /* Add the input box if needed */ |
| 5612 | if (textfield != NULL) |
| 5613 | { |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 5614 | /* Cheat for now reuse the message and convert to text edit */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5615 | inputItm.idx = lastButton + 3; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5616 | inputDITL = GetResource('DITL', 132); |
| 5617 | AppendDITL(theDialog, inputDITL, overlayDITL); |
| 5618 | ReleaseResource(inputDITL); |
| 5619 | GetDialogItem(theDialog, inputItm.idx, &itemType, &itemHandle, &box); |
| 5620 | /* SetDialogItem(theDialog, inputItm.idx, kEditTextDialogItem, itemHandle, &box);*/ |
| 5621 | (void) C2PascalString(textfield, &name); |
| 5622 | SetDialogItemText(itemHandle, name); |
| 5623 | inputItm.width = StringWidth(name); |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5624 | |
| 5625 | /* Hotkeys don't make sense if there's a text field */ |
| 5626 | gDialogHotKeys = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5627 | } |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5628 | else |
| 5629 | /* Install hotkey table */ |
| 5630 | gDialogHotKeys = (short *)&hotKeys; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5631 | |
| 5632 | /* Set the <ENTER> and <ESC> button. */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5633 | SetDialogDefaultItem(theDialog, dfltbutton); |
| 5634 | SetDialogCancelItem(theDialog, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5635 | |
| 5636 | /* Reposition element */ |
| 5637 | |
| 5638 | /* Check if we need to force vertical */ |
| 5639 | if (totalButtonWidth > maximumWidth) |
| 5640 | vertical = TRUE; |
| 5641 | |
| 5642 | /* Place icon */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5643 | macMoveDialogItem(theDialog, iconItm.idx, dfltIconSideSpace, dfltElementSpacing, &box); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5644 | iconItm.box.right = box.right; |
| 5645 | iconItm.box.bottom = box.bottom; |
| 5646 | |
| 5647 | /* Place Message */ |
| 5648 | messageItm.box.left = iconItm.box.right + dfltIconSideSpace; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5649 | macSizeDialogItem(theDialog, messageItm.idx, 0, messageLines * (textFontInfo.ascent + textFontInfo.descent)); |
| 5650 | macMoveDialogItem(theDialog, messageItm.idx, messageItm.box.left, dfltElementSpacing, &messageItm.box); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5651 | |
| 5652 | /* Place Input */ |
| 5653 | if (textfield != NULL) |
| 5654 | { |
| 5655 | inputItm.box.left = messageItm.box.left; |
| 5656 | inputItm.box.top = messageItm.box.bottom + dfltElementSpacing; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5657 | macSizeDialogItem(theDialog, inputItm.idx, 0, textFontInfo.ascent + textFontInfo.descent); |
| 5658 | macMoveDialogItem(theDialog, inputItm.idx, inputItm.box.left, inputItm.box.top, &inputItm.box); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5659 | /* Convert the static text into a text edit. |
| 5660 | * For some reason this change need to be done last (Dany) */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5661 | GetDialogItem(theDialog, inputItm.idx, &itemType, &itemHandle, &inputItm.box); |
| 5662 | SetDialogItem(theDialog, inputItm.idx, kEditTextDialogItem, itemHandle, &inputItm.box); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5663 | SelectDialogItemText(theDialog, inputItm.idx, 0, 32767); |
| 5664 | } |
| 5665 | |
| 5666 | /* Place Button */ |
| 5667 | if (textfield != NULL) |
| 5668 | { |
| 5669 | buttonItm.box.left = inputItm.box.left; |
| 5670 | buttonItm.box.top = inputItm.box.bottom + dfltElementSpacing; |
| 5671 | } |
| 5672 | else |
| 5673 | { |
| 5674 | buttonItm.box.left = messageItm.box.left; |
| 5675 | buttonItm.box.top = messageItm.box.bottom + dfltElementSpacing; |
| 5676 | } |
| 5677 | |
| 5678 | for (button=1; button <= lastButton; button++) |
| 5679 | { |
| 5680 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5681 | macMoveDialogItem(theDialog, button, buttonItm.box.left, buttonItm.box.top, &box); |
Bram Moolenaar | ec83173 | 2007-08-30 10:51:14 +0000 | [diff] [blame] | 5682 | /* With vertical, it's better to have all buttons the same length */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5683 | if (vertical) |
| 5684 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5685 | macSizeDialogItem(theDialog, button, widestButton, 0); |
| 5686 | GetDialogItem(theDialog, button, &itemType, &itemHandle, &box); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5687 | } |
| 5688 | /* Calculate position of next button */ |
| 5689 | if (vertical) |
| 5690 | buttonItm.box.top = box.bottom + dfltElementSpacing; |
| 5691 | else |
| 5692 | buttonItm.box.left = box.right + dfltElementSpacing; |
| 5693 | } |
| 5694 | |
| 5695 | /* Resize the dialog box */ |
| 5696 | dialogHeight = box.bottom + dfltElementSpacing; |
| 5697 | SizeWindow(theWindow, maximumWidth, dialogHeight, TRUE); |
| 5698 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5699 | /* Magic resize */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5700 | AutoSizeDialog(theDialog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5701 | /* Need a horizontal resize anyway so not that useful */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5702 | |
| 5703 | /* Display it */ |
| 5704 | ShowWindow(theWindow); |
| 5705 | /* BringToFront(theWindow); */ |
| 5706 | SelectWindow(theWindow); |
| 5707 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5708 | /* DrawDialog(theDialog); */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5709 | #if 0 |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5710 | GetPort(&oldPort); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5711 | SetPortDialogPort(theDialog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5712 | #endif |
| 5713 | |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 5714 | #ifdef USE_CARBONKEYHANDLER |
| 5715 | /* Avoid that we use key events for the main window. */ |
| 5716 | dialog_busy = TRUE; |
| 5717 | #endif |
| 5718 | |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5719 | /* Prepare the shortcut-handling filterProc for handing to the dialog */ |
| 5720 | dialogUPP = NewModalFilterUPP(DialogHotkeyFilterProc); |
| 5721 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5722 | /* Hang until one of the button is hit */ |
| 5723 | do |
| 5724 | { |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5725 | ModalDialog(dialogUPP, &itemHit); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5726 | } while ((itemHit < 1) || (itemHit > lastButton)); |
| 5727 | |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 5728 | #ifdef USE_CARBONKEYHANDLER |
| 5729 | dialog_busy = FALSE; |
| 5730 | #endif |
| 5731 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5732 | /* Copy back the text entered by the user into the param */ |
| 5733 | if (textfield != NULL) |
| 5734 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5735 | GetDialogItem(theDialog, inputItm.idx, &itemType, &itemHandle, &box); |
| 5736 | GetDialogItemText(itemHandle, (char_u *) &name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5737 | #if IOSIZE < 256 |
| 5738 | /* Truncate the name to IOSIZE if needed */ |
| 5739 | if (name[0] > IOSIZE) |
| 5740 | name[0] = IOSIZE - 1; |
| 5741 | #endif |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 5742 | vim_strncpy(textfield, &name[1], name[0]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5743 | } |
| 5744 | |
| 5745 | /* Restore the original graphical port */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5746 | SetPort(oldPort); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5747 | |
Bram Moolenaar | c52da9d | 2008-03-20 13:39:37 +0000 | [diff] [blame] | 5748 | /* Free the modal filterProc */ |
| 5749 | DisposeRoutineDescriptor(dialogUPP); |
| 5750 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 5751 | /* Get ride of the dialog (free memory) */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5752 | DisposeDialog(theDialog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5753 | |
| 5754 | return itemHit; |
| 5755 | /* |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 5756 | * Useful thing which could be used |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5757 | * SetDialogTimeout(): Auto click a button after timeout |
| 5758 | * SetDialogTracksCursor() : Get the I-beam cursor over input box |
| 5759 | * MoveDialogItem(): Probably better than SetDialogItem |
| 5760 | * SizeDialogItem(): (but is it Carbon Only?) |
Bram Moolenaar | 14d0e79 | 2007-08-30 08:35:35 +0000 | [diff] [blame] | 5761 | * AutoSizeDialog(): Magic resize of dialog based on text length |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5762 | */ |
| 5763 | } |
| 5764 | #endif /* FEAT_DIALOG_GUI */ |
| 5765 | |
| 5766 | /* |
| 5767 | * Display the saved error message(s). |
| 5768 | */ |
| 5769 | #ifdef USE_MCH_ERRMSG |
| 5770 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5771 | display_errors(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5772 | { |
| 5773 | char *p; |
| 5774 | char_u pError[256]; |
| 5775 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5776 | if (error_ga.ga_data == NULL) |
| 5777 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5778 | |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5779 | /* avoid putting up a message box with blanks only */ |
| 5780 | for (p = (char *)error_ga.ga_data; *p; ++p) |
| 5781 | if (!isspace(*p)) |
| 5782 | { |
| 5783 | if (STRLEN(p) > 255) |
| 5784 | pError[0] = 255; |
| 5785 | else |
| 5786 | pError[0] = STRLEN(p); |
| 5787 | |
| 5788 | STRNCPY(&pError[1], p, pError[0]); |
| 5789 | ParamText(pError, nil, nil, nil); |
| 5790 | Alert(128, nil); |
| 5791 | break; |
| 5792 | /* TODO: handled message longer than 256 chars |
| 5793 | * use auto-sizeable alert |
| 5794 | * or dialog with scrollbars (TextEdit zone) |
| 5795 | */ |
| 5796 | } |
| 5797 | ga_clear(&error_ga); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5798 | } |
| 5799 | #endif |
| 5800 | |
| 5801 | /* |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 5802 | * Get current mouse coordinates in text window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5803 | */ |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 5804 | void |
| 5805 | gui_mch_getmouse(int *x, int *y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5806 | { |
| 5807 | Point where; |
| 5808 | |
| 5809 | GetMouse(&where); |
| 5810 | |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 5811 | *x = where.h; |
| 5812 | *y = where.v; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5813 | } |
| 5814 | |
| 5815 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5816 | gui_mch_setmouse(int x, int y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5817 | { |
| 5818 | /* TODO */ |
| 5819 | #if 0 |
| 5820 | /* From FAQ 3-11 */ |
| 5821 | |
| 5822 | CursorDevicePtr myMouse; |
| 5823 | Point where; |
| 5824 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5825 | if ( NGetTrapAddress(_CursorDeviceDispatch, ToolTrap) |
| 5826 | != NGetTrapAddress(_Unimplemented, ToolTrap)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5827 | { |
| 5828 | /* New way */ |
| 5829 | |
| 5830 | /* |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 5831 | * Get first device with one button. |
| 5832 | * This will probably be the standard mouse |
| 5833 | * start at head of cursor dev list |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5834 | * |
| 5835 | */ |
| 5836 | |
| 5837 | myMouse = nil; |
| 5838 | |
| 5839 | do |
| 5840 | { |
| 5841 | /* Get the next cursor device */ |
| 5842 | CursorDeviceNextDevice(&myMouse); |
| 5843 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5844 | while ((myMouse != nil) && (myMouse->cntButtons != 1)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5845 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5846 | CursorDeviceMoveTo(myMouse, x, y); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5847 | } |
| 5848 | else |
| 5849 | { |
| 5850 | /* Old way */ |
| 5851 | where.h = x; |
| 5852 | where.v = y; |
| 5853 | |
| 5854 | *(Point *)RawMouse = where; |
| 5855 | *(Point *)MTemp = where; |
| 5856 | *(Ptr) CrsrNew = 0xFFFF; |
| 5857 | } |
| 5858 | #endif |
| 5859 | } |
| 5860 | |
| 5861 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5862 | gui_mch_show_popupmenu(vimmenu_T *menu) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5863 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5864 | /* |
| 5865 | * Clone PopUp to use menu |
| 5866 | * Create a object descriptor for the current selection |
| 5867 | * Call the procedure |
| 5868 | */ |
| 5869 | |
| 5870 | MenuHandle CntxMenu; |
| 5871 | Point where; |
| 5872 | OSStatus status; |
| 5873 | UInt32 CntxType; |
| 5874 | SInt16 CntxMenuID; |
| 5875 | UInt16 CntxMenuItem; |
| 5876 | Str255 HelpName = ""; |
| 5877 | GrafPtr savePort; |
| 5878 | |
| 5879 | /* Save Current Port: On MacOS X we seem to lose the port */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5880 | GetPort(&savePort); /*OSX*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5881 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5882 | GetMouse(&where); |
| 5883 | LocalToGlobal(&where); /*OSX*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5884 | CntxMenu = menu->submenu_handle; |
| 5885 | |
| 5886 | /* TODO: Get the text selection from Vim */ |
| 5887 | |
| 5888 | /* Call to Handle Popup */ |
Bram Moolenaar | 48c2c9a | 2007-03-08 19:34:12 +0000 | [diff] [blame] | 5889 | status = ContextualMenuSelect(CntxMenu, where, false, kCMHelpItemRemoveHelp, |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 5890 | HelpName, NULL, &CntxType, &CntxMenuID, &CntxMenuItem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5891 | |
| 5892 | if (status == noErr) |
| 5893 | { |
| 5894 | if (CntxType == kCMMenuItemSelected) |
| 5895 | { |
| 5896 | /* Handle the menu CntxMenuID, CntxMenuItem */ |
| 5897 | /* The submenu can be handle directly by gui_mac_handle_menu */ |
Bram Moolenaar | adcb949 | 2006-10-17 10:51:57 +0000 | [diff] [blame] | 5898 | /* But what about the current menu, is the menu changed by |
| 5899 | * ContextualMenuSelect */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5900 | gui_mac_handle_menu((CntxMenuID << 16) + CntxMenuItem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5901 | } |
| 5902 | else if (CntxMenuID == kCMShowHelpSelected) |
| 5903 | { |
| 5904 | /* Should come up with the help */ |
| 5905 | } |
| 5906 | } |
| 5907 | |
| 5908 | /* Restore original Port */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5909 | SetPort(savePort); /*OSX*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5910 | } |
| 5911 | |
| 5912 | #if defined(FEAT_CW_EDITOR) || defined(PROTO) |
| 5913 | /* TODO: Is it need for MACOS_X? (Dany) */ |
| 5914 | void |
| 5915 | mch_post_buffer_write(buf_T *buf) |
| 5916 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5917 | GetFSSpecFromPath(buf->b_ffname, &buf->b_FSSpec); |
| 5918 | Send_KAHL_MOD_AE(buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5919 | } |
| 5920 | #endif |
| 5921 | |
| 5922 | #ifdef FEAT_TITLE |
| 5923 | /* |
| 5924 | * Set the window title and icon. |
| 5925 | * (The icon is not taken care of). |
| 5926 | */ |
| 5927 | void |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5928 | gui_mch_settitle(char_u *title, char_u *icon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5929 | { |
| 5930 | /* TODO: Get vim to make sure maxlen (from p_titlelen) is smaller |
| 5931 | * that 256. Even better get it to fit nicely in the titlebar. |
| 5932 | */ |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 5933 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 5934 | CFStringRef windowTitle; |
| 5935 | size_t windowTitleLen; |
| 5936 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5937 | char_u *pascalTitle; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 5938 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5939 | |
| 5940 | if (title == NULL) /* nothing to do */ |
| 5941 | return; |
| 5942 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 5943 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 5944 | windowTitleLen = STRLEN(title); |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 5945 | windowTitle = (CFStringRef)mac_enc_to_cfstring(title, windowTitleLen); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 5946 | |
| 5947 | if (windowTitle) |
| 5948 | { |
| 5949 | SetWindowTitleWithCFString(gui.VimWindow, windowTitle); |
| 5950 | CFRelease(windowTitle); |
| 5951 | } |
| 5952 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5953 | pascalTitle = C2Pascal_save(title); |
| 5954 | if (pascalTitle != NULL) |
| 5955 | { |
| 5956 | SetWTitle(gui.VimWindow, pascalTitle); |
| 5957 | vim_free(pascalTitle); |
| 5958 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 5959 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5960 | } |
| 5961 | #endif |
| 5962 | |
| 5963 | /* |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 5964 | * Transferred from os_mac.c for MacOS X using os_unix.c prep work |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5965 | */ |
| 5966 | |
| 5967 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5968 | C2PascalString(char_u *CString, Str255 *PascalString) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5969 | { |
| 5970 | char_u *PascalPtr = (char_u *) PascalString; |
| 5971 | int len; |
| 5972 | int i; |
| 5973 | |
| 5974 | PascalPtr[0] = 0; |
| 5975 | if (CString == NULL) |
| 5976 | return 0; |
| 5977 | |
| 5978 | len = STRLEN(CString); |
| 5979 | if (len > 255) |
| 5980 | len = 255; |
| 5981 | |
| 5982 | for (i = 0; i < len; i++) |
| 5983 | PascalPtr[i+1] = CString[i]; |
| 5984 | |
| 5985 | PascalPtr[0] = len; |
| 5986 | |
| 5987 | return 0; |
| 5988 | } |
| 5989 | |
| 5990 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 5991 | GetFSSpecFromPath(char_u *file, FSSpec *fileFSSpec) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5992 | { |
| 5993 | /* From FAQ 8-12 */ |
| 5994 | Str255 filePascal; |
| 5995 | CInfoPBRec myCPB; |
| 5996 | OSErr err; |
| 5997 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5998 | (void) C2PascalString(file, &filePascal); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5999 | |
| 6000 | myCPB.dirInfo.ioNamePtr = filePascal; |
| 6001 | myCPB.dirInfo.ioVRefNum = 0; |
| 6002 | myCPB.dirInfo.ioFDirIndex = 0; |
| 6003 | myCPB.dirInfo.ioDrDirID = 0; |
| 6004 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6005 | err= PBGetCatInfo(&myCPB, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6006 | |
| 6007 | /* vRefNum, dirID, name */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6008 | FSMakeFSSpec(0, 0, filePascal, fileFSSpec); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6009 | |
| 6010 | /* TODO: Use an error code mechanism */ |
| 6011 | return 0; |
| 6012 | } |
| 6013 | |
| 6014 | /* |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 6015 | * Convert a FSSpec to a full path |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6016 | */ |
| 6017 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6018 | char_u *FullPathFromFSSpec_save(FSSpec file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6019 | { |
| 6020 | /* |
| 6021 | * TODO: Add protection for 256 char max. |
| 6022 | */ |
| 6023 | |
| 6024 | CInfoPBRec theCPB; |
| 6025 | char_u fname[256]; |
| 6026 | char_u *filenamePtr = fname; |
| 6027 | OSErr error; |
| 6028 | int folder = 1; |
| 6029 | #ifdef USE_UNIXFILENAME |
| 6030 | SInt16 dfltVol_vRefNum; |
| 6031 | SInt32 dfltVol_dirID; |
| 6032 | FSRef refFile; |
| 6033 | OSStatus status; |
| 6034 | UInt32 pathSize = 256; |
| 6035 | char_u pathname[256]; |
| 6036 | char_u *path = pathname; |
| 6037 | #else |
| 6038 | Str255 directoryName; |
| 6039 | char_u temporary[255]; |
| 6040 | char_u *temporaryPtr = temporary; |
| 6041 | #endif |
| 6042 | |
| 6043 | #ifdef USE_UNIXFILENAME |
| 6044 | /* Get the default volume */ |
| 6045 | /* TODO: Remove as this only work if Vim is on the Boot Volume*/ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6046 | error=HGetVol(NULL, &dfltVol_vRefNum, &dfltVol_dirID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6047 | |
| 6048 | if (error) |
| 6049 | return NULL; |
| 6050 | #endif |
| 6051 | |
| 6052 | /* Start filling fname with file.name */ |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 6053 | vim_strncpy(filenamePtr, &file.name[1], file.name[0]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6054 | |
| 6055 | /* Get the info about the file specified in FSSpec */ |
| 6056 | theCPB.dirInfo.ioFDirIndex = 0; |
| 6057 | theCPB.dirInfo.ioNamePtr = file.name; |
| 6058 | theCPB.dirInfo.ioVRefNum = file.vRefNum; |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6059 | /*theCPB.hFileInfo.ioDirID = 0;*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6060 | theCPB.dirInfo.ioDrDirID = file.parID; |
| 6061 | |
| 6062 | /* As ioFDirIndex = 0, get the info of ioNamePtr, |
| 6063 | which is relative to ioVrefNum, ioDirID */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6064 | error = PBGetCatInfo(&theCPB, false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6065 | |
| 6066 | /* If we are called for a new file we expect fnfErr */ |
| 6067 | if ((error) && (error != fnfErr)) |
| 6068 | return NULL; |
| 6069 | |
| 6070 | /* Check if it's a file or folder */ |
| 6071 | /* default to file if file don't exist */ |
| 6072 | if (((theCPB.hFileInfo.ioFlAttrib & ioDirMask) == 0) || (error)) |
| 6073 | folder = 0; /* It's not a folder */ |
| 6074 | else |
| 6075 | folder = 1; |
| 6076 | |
| 6077 | #ifdef USE_UNIXFILENAME |
| 6078 | /* |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 6079 | * The functions used here are available in Carbon, but do nothing on |
| 6080 | * MacOS 8 and 9. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6081 | */ |
| 6082 | if (error == fnfErr) |
| 6083 | { |
| 6084 | /* If the file to be saved does not already exist, it isn't possible |
| 6085 | to convert its FSSpec into an FSRef. But we can construct an |
| 6086 | FSSpec for the file's parent folder (since we have its volume and |
| 6087 | directory IDs), and since that folder does exist, we can convert |
| 6088 | that FSSpec into an FSRef, convert the FSRef in turn into a path, |
| 6089 | and, finally, append the filename. */ |
| 6090 | FSSpec dirSpec; |
| 6091 | FSRef dirRef; |
| 6092 | Str255 emptyFilename = "\p"; |
| 6093 | error = FSMakeFSSpec(theCPB.dirInfo.ioVRefNum, |
| 6094 | theCPB.dirInfo.ioDrDirID, emptyFilename, &dirSpec); |
| 6095 | if (error) |
| 6096 | return NULL; |
| 6097 | |
| 6098 | error = FSpMakeFSRef(&dirSpec, &dirRef); |
| 6099 | if (error) |
| 6100 | return NULL; |
| 6101 | |
| 6102 | status = FSRefMakePath(&dirRef, (UInt8*)path, pathSize); |
| 6103 | if (status) |
| 6104 | return NULL; |
| 6105 | |
| 6106 | STRCAT(path, "/"); |
| 6107 | STRCAT(path, filenamePtr); |
| 6108 | } |
| 6109 | else |
| 6110 | { |
| 6111 | /* If the file to be saved already exists, we can get its full path |
| 6112 | by converting its FSSpec into an FSRef. */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6113 | error=FSpMakeFSRef(&file, &refFile); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6114 | if (error) |
| 6115 | return NULL; |
| 6116 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6117 | status=FSRefMakePath(&refFile, (UInt8 *) path, pathSize); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6118 | if (status) |
| 6119 | return NULL; |
| 6120 | } |
| 6121 | |
| 6122 | /* Add a slash at the end if needed */ |
| 6123 | if (folder) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6124 | STRCAT(path, "/"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6125 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6126 | return (vim_strsave(path)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6127 | #else |
| 6128 | /* TODO: Get rid of all USE_UNIXFILENAME below */ |
| 6129 | /* Set ioNamePtr, it's the same area which is always reused. */ |
| 6130 | theCPB.dirInfo.ioNamePtr = directoryName; |
| 6131 | |
| 6132 | /* Trick for first entry, set ioDrParID to the first value |
| 6133 | * we want for ioDrDirID*/ |
| 6134 | theCPB.dirInfo.ioDrParID = file.parID; |
| 6135 | theCPB.dirInfo.ioDrDirID = file.parID; |
| 6136 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6137 | if ((TRUE) && (file.parID != fsRtDirID /*fsRtParID*/)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6138 | do |
| 6139 | { |
| 6140 | theCPB.dirInfo.ioFDirIndex = -1; |
| 6141 | /* theCPB.dirInfo.ioNamePtr = directoryName; Already done above. */ |
| 6142 | theCPB.dirInfo.ioVRefNum = file.vRefNum; |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 6143 | /* theCPB.dirInfo.ioDirID = irrelevant when ioFDirIndex = -1 */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6144 | theCPB.dirInfo.ioDrDirID = theCPB.dirInfo.ioDrParID; |
| 6145 | |
| 6146 | /* As ioFDirIndex = -1, get the info of ioDrDirID, */ |
| 6147 | /* *ioNamePtr[0 TO 31] will be updated */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6148 | error = PBGetCatInfo(&theCPB,false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6149 | |
| 6150 | if (error) |
| 6151 | return NULL; |
| 6152 | |
| 6153 | /* Put the new directoryName in front of the current fname */ |
| 6154 | STRCPY(temporaryPtr, filenamePtr); |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 6155 | vim_strncpy(filenamePtr, &directoryName[1], directoryName[0]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6156 | STRCAT(filenamePtr, ":"); |
| 6157 | STRCAT(filenamePtr, temporaryPtr); |
| 6158 | } |
| 6159 | #if 1 /* def USE_UNIXFILENAME */ |
| 6160 | while ((theCPB.dirInfo.ioDrParID != fsRtDirID) /* && */ |
| 6161 | /* (theCPB.dirInfo.ioDrDirID != fsRtDirID)*/); |
| 6162 | #else |
| 6163 | while (theCPB.dirInfo.ioDrDirID != fsRtDirID); |
| 6164 | #endif |
| 6165 | |
| 6166 | /* Get the information about the volume on which the file reside */ |
| 6167 | theCPB.dirInfo.ioFDirIndex = -1; |
| 6168 | /* theCPB.dirInfo.ioNamePtr = directoryName; Already done above. */ |
| 6169 | theCPB.dirInfo.ioVRefNum = file.vRefNum; |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 6170 | /* theCPB.dirInfo.ioDirID = irrelevant when ioFDirIndex = -1 */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6171 | theCPB.dirInfo.ioDrDirID = theCPB.dirInfo.ioDrParID; |
| 6172 | |
| 6173 | /* As ioFDirIndex = -1, get the info of ioDrDirID, */ |
| 6174 | /* *ioNamePtr[0 TO 31] will be updated */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6175 | error = PBGetCatInfo(&theCPB,false); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6176 | |
| 6177 | if (error) |
| 6178 | return NULL; |
| 6179 | |
| 6180 | /* For MacOS Classic always add the volume name */ |
| 6181 | /* For MacOS X add the volume name preceded by "Volumes" */ |
Bram Moolenaar | 720c710 | 2007-05-10 18:07:50 +0000 | [diff] [blame] | 6182 | /* when we are not referring to the boot volume */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6183 | #ifdef USE_UNIXFILENAME |
| 6184 | if (file.vRefNum != dfltVol_vRefNum) |
| 6185 | #endif |
| 6186 | { |
| 6187 | /* Add the volume name */ |
| 6188 | STRCPY(temporaryPtr, filenamePtr); |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 6189 | vim_strncpy(filenamePtr, &directoryName[1], directoryName[0]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6190 | STRCAT(filenamePtr, ":"); |
| 6191 | STRCAT(filenamePtr, temporaryPtr); |
| 6192 | |
| 6193 | #ifdef USE_UNIXFILENAME |
| 6194 | STRCPY(temporaryPtr, filenamePtr); |
| 6195 | filenamePtr[0] = 0; /* NULL terminate the string */ |
| 6196 | STRCAT(filenamePtr, "Volumes:"); |
| 6197 | STRCAT(filenamePtr, temporaryPtr); |
| 6198 | #endif |
| 6199 | } |
| 6200 | |
| 6201 | /* Append final path separator if it's a folder */ |
| 6202 | if (folder) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6203 | STRCAT(fname, ":"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6204 | |
| 6205 | /* As we use Unix File Name for MacOS X convert it */ |
| 6206 | #ifdef USE_UNIXFILENAME |
| 6207 | /* Need to insert leading / */ |
| 6208 | /* TODO: get the above code to use directly the / */ |
| 6209 | STRCPY(&temporaryPtr[1], filenamePtr); |
| 6210 | temporaryPtr[0] = '/'; |
| 6211 | STRCPY(filenamePtr, temporaryPtr); |
| 6212 | { |
| 6213 | char *p; |
| 6214 | for (p = fname; *p; p++) |
| 6215 | if (*p == ':') |
| 6216 | *p = '/'; |
| 6217 | } |
| 6218 | #endif |
| 6219 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6220 | return (vim_strsave(fname)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6221 | #endif |
| 6222 | } |
| 6223 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6224 | #if (defined(USE_IM_CONTROL) || defined(PROTO)) && defined(USE_CARBONKEYHANDLER) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6225 | /* |
| 6226 | * Input Method Control functions. |
| 6227 | */ |
| 6228 | |
| 6229 | /* |
| 6230 | * Notify cursor position to IM. |
| 6231 | */ |
| 6232 | void |
| 6233 | im_set_position(int row, int col) |
| 6234 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6235 | #if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6236 | /* TODO: Implement me! */ |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6237 | im_start_row = row; |
| 6238 | im_start_col = col; |
| 6239 | #endif |
| 6240 | } |
| 6241 | |
| 6242 | static ScriptLanguageRecord gTSLWindow; |
| 6243 | static ScriptLanguageRecord gTSLInsert; |
| 6244 | static ScriptLanguageRecord gTSLDefault = { 0, 0 }; |
| 6245 | |
| 6246 | static Component gTSCWindow; |
| 6247 | static Component gTSCInsert; |
| 6248 | static Component gTSCDefault; |
| 6249 | |
| 6250 | static int im_initialized = 0; |
| 6251 | |
| 6252 | static void |
| 6253 | im_on_window_switch(int active) |
| 6254 | { |
| 6255 | ScriptLanguageRecord *slptr = NULL; |
| 6256 | OSStatus err; |
| 6257 | |
| 6258 | if (! gui.in_use) |
| 6259 | return; |
| 6260 | |
| 6261 | if (im_initialized == 0) |
| 6262 | { |
| 6263 | im_initialized = 1; |
| 6264 | |
| 6265 | /* save default TSM component (should be U.S.) to default */ |
| 6266 | GetDefaultInputMethodOfClass(&gTSCDefault, &gTSLDefault, |
| 6267 | kKeyboardInputMethodClass); |
| 6268 | } |
| 6269 | |
| 6270 | if (active == TRUE) |
| 6271 | { |
| 6272 | im_is_active = TRUE; |
| 6273 | ActivateTSMDocument(gTSMDocument); |
| 6274 | slptr = &gTSLWindow; |
| 6275 | |
| 6276 | if (slptr) |
| 6277 | { |
| 6278 | err = SetDefaultInputMethodOfClass(gTSCWindow, slptr, |
| 6279 | kKeyboardInputMethodClass); |
| 6280 | if (err == noErr) |
| 6281 | err = SetTextServiceLanguage(slptr); |
| 6282 | |
| 6283 | if (err == noErr) |
| 6284 | KeyScript(slptr->fScript | smKeyForceKeyScriptMask); |
| 6285 | } |
| 6286 | } |
| 6287 | else |
| 6288 | { |
| 6289 | err = GetTextServiceLanguage(&gTSLWindow); |
| 6290 | if (err == noErr) |
| 6291 | slptr = &gTSLWindow; |
| 6292 | |
| 6293 | if (slptr) |
| 6294 | GetDefaultInputMethodOfClass(&gTSCWindow, slptr, |
| 6295 | kKeyboardInputMethodClass); |
| 6296 | |
| 6297 | im_is_active = FALSE; |
| 6298 | DeactivateTSMDocument(gTSMDocument); |
| 6299 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6300 | } |
| 6301 | |
| 6302 | /* |
| 6303 | * Set IM status on ("active" is TRUE) or off ("active" is FALSE). |
| 6304 | */ |
| 6305 | void |
| 6306 | im_set_active(int active) |
| 6307 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6308 | ScriptLanguageRecord *slptr = NULL; |
| 6309 | OSStatus err; |
| 6310 | |
| 6311 | if (! gui.in_use) |
| 6312 | return; |
| 6313 | |
| 6314 | if (im_initialized == 0) |
| 6315 | { |
| 6316 | im_initialized = 1; |
| 6317 | |
| 6318 | /* save default TSM component (should be U.S.) to default */ |
| 6319 | GetDefaultInputMethodOfClass(&gTSCDefault, &gTSLDefault, |
| 6320 | kKeyboardInputMethodClass); |
| 6321 | } |
| 6322 | |
| 6323 | if (active == TRUE) |
| 6324 | { |
| 6325 | im_is_active = TRUE; |
| 6326 | ActivateTSMDocument(gTSMDocument); |
| 6327 | slptr = &gTSLInsert; |
| 6328 | |
| 6329 | if (slptr) |
| 6330 | { |
| 6331 | err = SetDefaultInputMethodOfClass(gTSCInsert, slptr, |
| 6332 | kKeyboardInputMethodClass); |
| 6333 | if (err == noErr) |
| 6334 | err = SetTextServiceLanguage(slptr); |
| 6335 | |
| 6336 | if (err == noErr) |
| 6337 | KeyScript(slptr->fScript | smKeyForceKeyScriptMask); |
| 6338 | } |
| 6339 | } |
| 6340 | else |
| 6341 | { |
| 6342 | err = GetTextServiceLanguage(&gTSLInsert); |
| 6343 | if (err == noErr) |
| 6344 | slptr = &gTSLInsert; |
| 6345 | |
| 6346 | if (slptr) |
| 6347 | GetDefaultInputMethodOfClass(&gTSCInsert, slptr, |
| 6348 | kKeyboardInputMethodClass); |
| 6349 | |
| 6350 | /* restore to default when switch to normal mode, so than we could |
| 6351 | * enter commands easier */ |
| 6352 | SetDefaultInputMethodOfClass(gTSCDefault, &gTSLDefault, |
| 6353 | kKeyboardInputMethodClass); |
| 6354 | SetTextServiceLanguage(&gTSLDefault); |
| 6355 | |
| 6356 | im_is_active = FALSE; |
| 6357 | DeactivateTSMDocument(gTSMDocument); |
| 6358 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6359 | } |
| 6360 | |
| 6361 | /* |
| 6362 | * Get IM status. When IM is on, return not 0. Else return 0. |
| 6363 | */ |
| 6364 | int |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 6365 | im_get_status(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6366 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6367 | if (! gui.in_use) |
| 6368 | return 0; |
| 6369 | |
| 6370 | return im_is_active; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6371 | } |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6372 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6373 | #endif /* defined(USE_IM_CONTROL) || defined(PROTO) */ |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6374 | |
| 6375 | |
| 6376 | |
| 6377 | |
| 6378 | #if defined(FEAT_GUI_TABLINE) || defined(PROTO) |
| 6379 | // drawer implementation |
| 6380 | static MenuRef contextMenu = NULL; |
| 6381 | enum |
| 6382 | { |
Bram Moolenaar | 43acbce | 2016-02-27 15:21:32 +0100 | [diff] [blame] | 6383 | kTabContextMenuId = 42 |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6384 | }; |
| 6385 | |
| 6386 | // the caller has to CFRelease() the returned string |
| 6387 | static CFStringRef |
| 6388 | getTabLabel(tabpage_T *page) |
| 6389 | { |
| 6390 | get_tabline_label(page, FALSE); |
| 6391 | #ifdef MACOS_CONVERT |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 6392 | return (CFStringRef)mac_enc_to_cfstring(NameBuff, STRLEN(NameBuff)); |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6393 | #else |
| 6394 | // TODO: check internal encoding? |
| 6395 | return CFStringCreateWithCString(kCFAllocatorDefault, (char *)NameBuff, |
| 6396 | kCFStringEncodingMacRoman); |
| 6397 | #endif |
| 6398 | } |
| 6399 | |
| 6400 | |
| 6401 | #define DRAWER_SIZE 150 |
| 6402 | #define DRAWER_INSET 16 |
| 6403 | |
| 6404 | static ControlRef dataBrowser = NULL; |
| 6405 | |
| 6406 | // when the tabline is hidden, vim doesn't call update_tabline(). When |
Bram Moolenaar | b05034a | 2010-09-21 17:34:31 +0200 | [diff] [blame] | 6407 | // the tabline is shown again, show_tabline() is called before update_tabline(), |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 6408 | // and because of this, the tab labels and vim's internal tabs are out of sync |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6409 | // for a very short time. to prevent inconsistent state, we store the labels |
| 6410 | // of the tabs, not pointers to the tabs (which are invalid for a short time). |
| 6411 | static CFStringRef *tabLabels = NULL; |
| 6412 | static int tabLabelsSize = 0; |
| 6413 | |
| 6414 | enum |
| 6415 | { |
| 6416 | kTabsColumn = 'Tabs' |
| 6417 | }; |
| 6418 | |
| 6419 | static int |
| 6420 | getTabCount(void) |
| 6421 | { |
| 6422 | tabpage_T *tp; |
| 6423 | int numTabs = 0; |
| 6424 | |
Bram Moolenaar | 2932359 | 2016-07-24 22:04:11 +0200 | [diff] [blame] | 6425 | FOR_ALL_TABPAGES(tp) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6426 | ++numTabs; |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6427 | return numTabs; |
| 6428 | } |
| 6429 | |
| 6430 | // data browser item display callback |
| 6431 | static OSStatus |
| 6432 | dbItemDataCallback(ControlRef browser, |
| 6433 | DataBrowserItemID itemID, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6434 | DataBrowserPropertyID property /* column id */, |
| 6435 | DataBrowserItemDataRef itemData, |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6436 | Boolean changeValue) |
| 6437 | { |
| 6438 | OSStatus status = noErr; |
| 6439 | |
| 6440 | // assert(property == kTabsColumn); // why is this violated?? |
| 6441 | |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 6442 | // changeValue is true if we have a modifiable list and data was changed. |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6443 | // In our case, it's always false. |
| 6444 | // (that is: if (changeValue) updateInternalData(); else return |
| 6445 | // internalData(); |
| 6446 | if (!changeValue) |
| 6447 | { |
| 6448 | CFStringRef str; |
| 6449 | |
| 6450 | assert(itemID - 1 >= 0 && itemID - 1 < tabLabelsSize); |
| 6451 | str = tabLabels[itemID - 1]; |
| 6452 | status = SetDataBrowserItemDataText(itemData, str); |
| 6453 | } |
| 6454 | else |
| 6455 | status = errDataBrowserPropertyNotSupported; |
| 6456 | |
| 6457 | return status; |
| 6458 | } |
| 6459 | |
| 6460 | // data browser action callback |
| 6461 | static void |
| 6462 | dbItemNotificationCallback(ControlRef browser, |
| 6463 | DataBrowserItemID item, |
| 6464 | DataBrowserItemNotification message) |
| 6465 | { |
| 6466 | switch (message) |
| 6467 | { |
| 6468 | case kDataBrowserItemSelected: |
| 6469 | send_tabline_event(item); |
| 6470 | break; |
| 6471 | } |
| 6472 | } |
| 6473 | |
| 6474 | // callbacks needed for contextual menu: |
| 6475 | static void |
| 6476 | dbGetContextualMenuCallback(ControlRef browser, |
| 6477 | MenuRef *menu, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6478 | UInt32 *helpType, |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6479 | CFStringRef *helpItemString, |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6480 | AEDesc *selection) |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6481 | { |
| 6482 | // on mac os 9: kCMHelpItemNoHelp, but it's not the same |
| 6483 | *helpType = kCMHelpItemRemoveHelp; // OS X only ;-) |
| 6484 | *helpItemString = NULL; |
| 6485 | |
| 6486 | *menu = contextMenu; |
| 6487 | } |
| 6488 | |
| 6489 | static void |
| 6490 | dbSelectContextualMenuCallback(ControlRef browser, |
| 6491 | MenuRef menu, |
| 6492 | UInt32 selectionType, |
| 6493 | SInt16 menuID, |
| 6494 | MenuItemIndex menuItem) |
| 6495 | { |
| 6496 | if (selectionType == kCMMenuItemSelected) |
| 6497 | { |
| 6498 | MenuCommand command; |
| 6499 | GetMenuItemCommandID(menu, menuItem, &command); |
| 6500 | |
| 6501 | // get tab that was selected when the context menu appeared |
| 6502 | // (there is always one tab selected). TODO: check if the context menu |
| 6503 | // isn't opened on an item but on empty space (has to be possible some |
| 6504 | // way, the finder does it too ;-) ) |
| 6505 | Handle items = NewHandle(0); |
| 6506 | if (items != NULL) |
| 6507 | { |
| 6508 | int numItems; |
| 6509 | |
| 6510 | GetDataBrowserItems(browser, kDataBrowserNoItem, false, |
| 6511 | kDataBrowserItemIsSelected, items); |
| 6512 | numItems = GetHandleSize(items) / sizeof(DataBrowserItemID); |
| 6513 | if (numItems > 0) |
| 6514 | { |
| 6515 | int idx; |
| 6516 | DataBrowserItemID *itemsPtr; |
| 6517 | |
| 6518 | HLock(items); |
| 6519 | itemsPtr = (DataBrowserItemID *)*items; |
| 6520 | idx = itemsPtr[0]; |
| 6521 | HUnlock(items); |
| 6522 | send_tabline_menu_event(idx, command); |
| 6523 | } |
| 6524 | DisposeHandle(items); |
| 6525 | } |
| 6526 | } |
| 6527 | } |
| 6528 | |
| 6529 | // focus callback of the data browser to always leave focus in vim |
| 6530 | static OSStatus |
| 6531 | dbFocusCallback(EventHandlerCallRef handler, EventRef event, void *data) |
| 6532 | { |
| 6533 | assert(GetEventClass(event) == kEventClassControl |
| 6534 | && GetEventKind(event) == kEventControlSetFocusPart); |
| 6535 | |
| 6536 | return paramErr; |
| 6537 | } |
| 6538 | |
| 6539 | |
| 6540 | // drawer callback to resize data browser to drawer size |
| 6541 | static OSStatus |
| 6542 | drawerCallback(EventHandlerCallRef handler, EventRef event, void *data) |
| 6543 | { |
| 6544 | switch (GetEventKind(event)) |
| 6545 | { |
| 6546 | case kEventWindowBoundsChanged: // move or resize |
| 6547 | { |
| 6548 | UInt32 attribs; |
| 6549 | GetEventParameter(event, kEventParamAttributes, typeUInt32, |
| 6550 | NULL, sizeof(attribs), NULL, &attribs); |
| 6551 | if (attribs & kWindowBoundsChangeSizeChanged) // resize |
| 6552 | { |
| 6553 | Rect r; |
| 6554 | GetWindowBounds(drawer, kWindowContentRgn, &r); |
| 6555 | SetRect(&r, 0, 0, r.right - r.left, r.bottom - r.top); |
| 6556 | SetControlBounds(dataBrowser, &r); |
| 6557 | SetDataBrowserTableViewNamedColumnWidth(dataBrowser, |
| 6558 | kTabsColumn, r.right); |
| 6559 | } |
| 6560 | } |
| 6561 | break; |
| 6562 | } |
| 6563 | |
| 6564 | return eventNotHandledErr; |
| 6565 | } |
| 6566 | |
| 6567 | // Load DataBrowserChangeAttributes() dynamically on tiger (and better). |
| 6568 | // This way the code works on 10.2 and 10.3 as well (it doesn't have the |
| 6569 | // blue highlights in the list view on these systems, though. Oh well.) |
| 6570 | |
| 6571 | |
| 6572 | #import <mach-o/dyld.h> |
| 6573 | |
| 6574 | enum { kMyDataBrowserAttributeListViewAlternatingRowColors = (1 << 1) }; |
| 6575 | |
| 6576 | static OSStatus |
| 6577 | myDataBrowserChangeAttributes(ControlRef inDataBrowser, |
| 6578 | OptionBits inAttributesToSet, |
| 6579 | OptionBits inAttributesToClear) |
| 6580 | { |
| 6581 | long osVersion; |
| 6582 | char *symbolName; |
| 6583 | NSSymbol symbol = NULL; |
| 6584 | OSStatus (*dataBrowserChangeAttributes)(ControlRef inDataBrowser, |
| 6585 | OptionBits inAttributesToSet, OptionBits inAttributesToClear); |
| 6586 | |
| 6587 | Gestalt(gestaltSystemVersion, &osVersion); |
| 6588 | if (osVersion < 0x1040) // only supported for 10.4 (and up) |
| 6589 | return noErr; |
| 6590 | |
| 6591 | // C name mangling... |
| 6592 | symbolName = "_DataBrowserChangeAttributes"; |
| 6593 | if (!NSIsSymbolNameDefined(symbolName) |
| 6594 | || (symbol = NSLookupAndBindSymbol(symbolName)) == NULL) |
| 6595 | return noErr; |
| 6596 | |
| 6597 | dataBrowserChangeAttributes = NSAddressOfSymbol(symbol); |
| 6598 | if (dataBrowserChangeAttributes == NULL) |
| 6599 | return noErr; // well... |
| 6600 | return dataBrowserChangeAttributes(inDataBrowser, |
| 6601 | inAttributesToSet, inAttributesToClear); |
| 6602 | } |
| 6603 | |
| 6604 | static void |
| 6605 | initialise_tabline(void) |
| 6606 | { |
| 6607 | Rect drawerRect = { 0, 0, 0, DRAWER_SIZE }; |
| 6608 | DataBrowserCallbacks dbCallbacks; |
| 6609 | EventTypeSpec focusEvent = {kEventClassControl, kEventControlSetFocusPart}; |
| 6610 | EventTypeSpec resizeEvent = {kEventClassWindow, kEventWindowBoundsChanged}; |
| 6611 | DataBrowserListViewColumnDesc colDesc; |
| 6612 | |
| 6613 | // drawers have to have compositing enabled |
| 6614 | CreateNewWindow(kDrawerWindowClass, |
| 6615 | kWindowStandardHandlerAttribute |
| 6616 | | kWindowCompositingAttribute |
| 6617 | | kWindowResizableAttribute |
| 6618 | | kWindowLiveResizeAttribute, |
| 6619 | &drawerRect, &drawer); |
| 6620 | |
| 6621 | SetThemeWindowBackground(drawer, kThemeBrushDrawerBackground, true); |
| 6622 | SetDrawerParent(drawer, gui.VimWindow); |
| 6623 | SetDrawerOffsets(drawer, kWindowOffsetUnchanged, DRAWER_INSET); |
| 6624 | |
| 6625 | |
| 6626 | // create list view embedded in drawer |
| 6627 | CreateDataBrowserControl(drawer, &drawerRect, kDataBrowserListView, |
| 6628 | &dataBrowser); |
| 6629 | |
| 6630 | dbCallbacks.version = kDataBrowserLatestCallbacks; |
| 6631 | InitDataBrowserCallbacks(&dbCallbacks); |
| 6632 | dbCallbacks.u.v1.itemDataCallback = |
| 6633 | NewDataBrowserItemDataUPP(dbItemDataCallback); |
| 6634 | dbCallbacks.u.v1.itemNotificationCallback = |
| 6635 | NewDataBrowserItemNotificationUPP(dbItemNotificationCallback); |
| 6636 | dbCallbacks.u.v1.getContextualMenuCallback = |
| 6637 | NewDataBrowserGetContextualMenuUPP(dbGetContextualMenuCallback); |
| 6638 | dbCallbacks.u.v1.selectContextualMenuCallback = |
| 6639 | NewDataBrowserSelectContextualMenuUPP(dbSelectContextualMenuCallback); |
| 6640 | |
| 6641 | SetDataBrowserCallbacks(dataBrowser, &dbCallbacks); |
| 6642 | |
| 6643 | SetDataBrowserListViewHeaderBtnHeight(dataBrowser, 0); // no header |
| 6644 | SetDataBrowserHasScrollBars(dataBrowser, false, true); // only vertical |
| 6645 | SetDataBrowserSelectionFlags(dataBrowser, |
| 6646 | kDataBrowserSelectOnlyOne | kDataBrowserNeverEmptySelectionSet); |
| 6647 | SetDataBrowserTableViewHiliteStyle(dataBrowser, |
| 6648 | kDataBrowserTableViewFillHilite); |
| 6649 | Boolean b = false; |
| 6650 | SetControlData(dataBrowser, kControlEntireControl, |
| 6651 | kControlDataBrowserIncludesFrameAndFocusTag, sizeof(b), &b); |
| 6652 | |
| 6653 | // enable blue background in data browser (this is only in 10.4 and vim |
| 6654 | // has to support older osx versions as well, so we have to load this |
| 6655 | // function dynamically) |
| 6656 | myDataBrowserChangeAttributes(dataBrowser, |
| 6657 | kMyDataBrowserAttributeListViewAlternatingRowColors, 0); |
| 6658 | |
| 6659 | // install callback that keeps focus in vim and away from the data browser |
| 6660 | InstallControlEventHandler(dataBrowser, dbFocusCallback, 1, &focusEvent, |
| 6661 | NULL, NULL); |
| 6662 | |
| 6663 | // install callback that keeps data browser at the size of the drawer |
| 6664 | InstallWindowEventHandler(drawer, drawerCallback, 1, &resizeEvent, |
| 6665 | NULL, NULL); |
| 6666 | |
| 6667 | // add "tabs" column to data browser |
| 6668 | colDesc.propertyDesc.propertyID = kTabsColumn; |
| 6669 | colDesc.propertyDesc.propertyType = kDataBrowserTextType; |
| 6670 | |
| 6671 | // add if items can be selected (?): kDataBrowserListViewSelectionColumn |
| 6672 | colDesc.propertyDesc.propertyFlags = kDataBrowserDefaultPropertyFlags; |
| 6673 | |
| 6674 | colDesc.headerBtnDesc.version = kDataBrowserListViewLatestHeaderDesc; |
| 6675 | colDesc.headerBtnDesc.minimumWidth = 100; |
| 6676 | colDesc.headerBtnDesc.maximumWidth = 150; |
| 6677 | colDesc.headerBtnDesc.titleOffset = 0; |
| 6678 | colDesc.headerBtnDesc.titleString = CFSTR("Tabs"); |
| 6679 | colDesc.headerBtnDesc.initialOrder = kDataBrowserOrderIncreasing; |
| 6680 | colDesc.headerBtnDesc.btnFontStyle.flags = 0; // use default font |
| 6681 | colDesc.headerBtnDesc.btnContentInfo.contentType = kControlContentTextOnly; |
| 6682 | |
| 6683 | AddDataBrowserListViewColumn(dataBrowser, &colDesc, 0); |
| 6684 | |
| 6685 | // create tabline popup menu required by vim docs (see :he tabline-menu) |
| 6686 | CreateNewMenu(kTabContextMenuId, 0, &contextMenu); |
Bram Moolenaar | 7098ee5 | 2015-06-09 19:14:24 +0200 | [diff] [blame] | 6687 | if (first_tabpage->tp_next != NULL) |
| 6688 | AppendMenuItemTextWithCFString(contextMenu, CFSTR("Close Tab"), 0, |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6689 | TABLINE_MENU_CLOSE, NULL); |
| 6690 | AppendMenuItemTextWithCFString(contextMenu, CFSTR("New Tab"), 0, |
| 6691 | TABLINE_MENU_NEW, NULL); |
| 6692 | AppendMenuItemTextWithCFString(contextMenu, CFSTR("Open Tab..."), 0, |
| 6693 | TABLINE_MENU_OPEN, NULL); |
| 6694 | } |
| 6695 | |
| 6696 | |
| 6697 | /* |
| 6698 | * Show or hide the tabline. |
| 6699 | */ |
| 6700 | void |
| 6701 | gui_mch_show_tabline(int showit) |
| 6702 | { |
| 6703 | if (showit == 0) |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6704 | CloseDrawer(drawer, true); |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6705 | else |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6706 | OpenDrawer(drawer, kWindowEdgeRight, true); |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6707 | } |
| 6708 | |
| 6709 | /* |
| 6710 | * Return TRUE when tabline is displayed. |
| 6711 | */ |
| 6712 | int |
| 6713 | gui_mch_showing_tabline(void) |
| 6714 | { |
| 6715 | WindowDrawerState state = GetDrawerState(drawer); |
| 6716 | |
| 6717 | return state == kWindowDrawerOpen || state == kWindowDrawerOpening; |
| 6718 | } |
| 6719 | |
| 6720 | /* |
| 6721 | * Update the labels of the tabline. |
| 6722 | */ |
| 6723 | void |
| 6724 | gui_mch_update_tabline(void) |
| 6725 | { |
| 6726 | tabpage_T *tp; |
| 6727 | int numTabs = getTabCount(); |
| 6728 | int nr = 1; |
| 6729 | int curtabidx = 1; |
| 6730 | |
| 6731 | // adjust data browser |
| 6732 | if (tabLabels != NULL) |
| 6733 | { |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6734 | int i; |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6735 | |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6736 | for (i = 0; i < tabLabelsSize; ++i) |
| 6737 | CFRelease(tabLabels[i]); |
| 6738 | free(tabLabels); |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6739 | } |
| 6740 | tabLabels = (CFStringRef *)malloc(numTabs * sizeof(CFStringRef)); |
| 6741 | tabLabelsSize = numTabs; |
| 6742 | |
| 6743 | for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr) |
| 6744 | { |
| 6745 | if (tp == curtab) |
| 6746 | curtabidx = nr; |
Bram Moolenaar | 1b60e50 | 2008-03-12 13:40:54 +0000 | [diff] [blame] | 6747 | tabLabels[nr-1] = getTabLabel(tp); |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6748 | } |
| 6749 | |
| 6750 | RemoveDataBrowserItems(dataBrowser, kDataBrowserNoItem, 0, NULL, |
| 6751 | kDataBrowserItemNoProperty); |
| 6752 | // data browser uses ids 1, 2, 3, ... numTabs per default, so we |
| 6753 | // can pass NULL for the id array |
| 6754 | AddDataBrowserItems(dataBrowser, kDataBrowserNoItem, numTabs, NULL, |
| 6755 | kDataBrowserItemNoProperty); |
| 6756 | |
| 6757 | DataBrowserItemID item = curtabidx; |
| 6758 | SetDataBrowserSelectedItems(dataBrowser, 1, &item, kDataBrowserItemsAssign); |
| 6759 | } |
| 6760 | |
| 6761 | /* |
| 6762 | * Set the current tab to "nr". First tab is 1. |
| 6763 | */ |
| 6764 | void |
Bram Moolenaar | 66f948e | 2016-01-30 16:39:25 +0100 | [diff] [blame] | 6765 | gui_mch_set_curtab(int nr) |
Bram Moolenaar | 79ee315 | 2007-04-26 16:20:50 +0000 | [diff] [blame] | 6766 | { |
| 6767 | DataBrowserItemID item = nr; |
| 6768 | SetDataBrowserSelectedItems(dataBrowser, 1, &item, kDataBrowserItemsAssign); |
| 6769 | |
| 6770 | // TODO: call something like this?: (or restore scroll position, or...) |
| 6771 | RevealDataBrowserItem(dataBrowser, item, kTabsColumn, |
| 6772 | kDataBrowserRevealOnly); |
| 6773 | } |
| 6774 | |
| 6775 | #endif // FEAT_GUI_TABLINE |