summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Run autogen before tagging so that the tag is always correct.Nalin Dahyabhai2002-04-268-38/+303
| | | | | | Update docs. Add pangox to the list of GTK+ 2.0 modules we link with. Add vte_terminal_set_scrollback_lines(), add some code to use pangox for rendering before trying core rendering, which should make font selection actually work.
* Add the changelog.vte_0_1Nalin Dahyabhai2002-04-252-1/+523
|
* Add scroll wheel support.Anders Carlsson2002-04-251-0/+27
|
* Uncomment the tag target.Nalin Dahyabhai2002-04-251-1/+1
|
* Add some targets for building tarballs in a hopefully-reproducible way.Nalin Dahyabhai2002-04-253-4/+24
|
* Let GDK_USE_XFT turn on Xft as well as VTE_USE_XFT.Nalin Dahyabhai2002-04-251-1/+10
| | | | * src/vte.c: Let GDK_USE_XFT turn on Xft as well as VTE_USE_XFT.
* Handle decoding errors better.Nalin Dahyabhai2002-04-252-33/+47
| | | | * src/vte.c: Handle decoding errors better.
* Include pkgconfig files in the package.Nalin Dahyabhai2002-04-251-0/+1
| | | | * vte.spec: Include pkgconfig files in the package.
* src/vte.c: Make multiple calls to set_background_transparent() and ↵Nalin Dahyabhai2002-04-251-61/+132
| | | | set_background_image() do the right thing.
* Reverse the sanity check in vte_terminal_set_background_image_file() soNalin Dahyabhai2002-04-251-1/+1
| | | | * src/vte.c: Reverse the sanity check in vte_terminal_set_background_image_file() so that it rejects zero-length strings, not the other way around.
* Demote some debug messages to being trie-specific debug messages. DeclareNalin Dahyabhai2002-04-253-35/+40
| | | | | | * src/trie.c: Demote some debug messages to being trie-specific debug messages. * src/vte.h: Declare vte_terminal_set_core_font() for non-Xft use. * src/vte.c: Adjust idle priorities to make the terminal be more responsive; fix a double-free that corrupted the heap on core font loads; rework some pixbuf handling; revert a patch for profterm crackiness that's gone now.
* update to-do list. remove --disable-shared. remove a memory leak. fix aNalin Dahyabhai2002-04-256-70/+173
| | | | | | | | | * README: update to-do list. * autogen.sh: remove --disable-shared. * src/pty.c: remove a memory leak. * src/termcap.c: fix a possible read-before-start-of-buffer. * src/trie.c: use iconv instead of mbrstowcs, even if it's just ASCII->W_CHAR_T. * src/vte.c: fix a few memory leaks; only reset the IM context when we're realized, which is the only time we actually have an IM context; don't create a copy of a pixbuf if we don't need to desaturate it, just ref it and use it directly.
* src/vte.c: Display UTF-8 preedit strings properly, fix copy (no, really this ↵Nalin Dahyabhai2002-04-231-52/+94
| | | | time), and reset IM contexts when pasting text in.
* src/pty.c: Print debug messages before redirecting stdio.Nalin Dahyabhai2002-04-233-85/+171
| | | | | | src/vte.c: Fix displaying of highlighted multi-column text. Use the GTK global setting for cursor blinking to control das blinkencursor. src/vte.h: Remove function for setting blinking timeout.
* src/pty.c: Fix a compile warning.Nalin Dahyabhai2002-04-231-1/+1
|
* autogen.sh: Default to include optimization, even for debugging.Nalin Dahyabhai2002-04-235-221/+555
| | | | | | | configure.in: Move AM_CONFIG_HEADER to the top. src/pty.c: Create non-login shells by default (when argv is NULL). src/vte.c: Add mostly-complete input method support. src/vte.h: Add vte_terminal_im_append_menuitems().
* add vte_terminal_set_fontHavoc Pennington2002-04-232-42/+212
|
* when setting background color, use allocated color, and don't overwrite with ↵Havoc Pennington2002-04-221-1/+2
| | | | bg of None
* use gdk_rgb_find_color to allocate X colorsHavoc Pennington2002-04-221-11/+9
|
* Add vte_terminal_feed_child() to send UTF-8 strings to the child process, andNalin Dahyabhai2002-04-223-3/+18
| | | | actually apply Havoc's fix right this time.
* src/vte.c: Prevent double-free of incoming buffer (patch from Havoc).Nalin Dahyabhai2002-04-221-0/+2
|
* Fix typo. Make blinking cursors stay on while the user is typing,Nalin Dahyabhai2002-04-162-16/+67
| | | | | * README: Fix typo. * src/vte.c: Make blinking cursors stay on while the user is typing, desaturate images using integer math.
* Add less useless descriptions. Fix an uninitialized variable and missingNalin Dahyabhai2002-04-052-4/+7
| | | | | * vte.spec: Add less useless descriptions. * src/vte.c: Fix an uninitialized variable and missing declaration error.
* Ensure that there's a data row whenever we scroll forward, fixingNalin Dahyabhai2002-03-251-7/+33
| | | | * src/vte.c: Ensure that there's a data row whenever we scroll forward, fixing strangeness when I suspend and resume vim.
* copy to clipboard synchronously, which fixes a number of problemsNalin Dahyabhai2002-03-251-83/+322
| | | | | | * src/vte.c: copy to clipboard synchronously, which fixes a number of problems implement background transparency * src/vteapp.c: no changes(?)
* Rework backgrounds to take advantage of gdk's automatic drawing. Try toNalin Dahyabhai2002-03-183-97/+100
| | | | | * vte.c: Rework backgrounds to take advantage of gdk's automatic drawing. * vteapp.c: Try to enable transparency if no background image is present.
* Adjust warnings used when in maintainer mode.Nalin Dahyabhai2002-03-182-3/+10
| | | | * autogen.sh configure.in: Adjust warnings used when in maintainer mode.
* Draw the cursor as an unfilled box when the widget does not have focus.Nalin Dahyabhai2002-03-171-15/+31
| | | | * src/vte.c: Draw the cursor as an unfilled box when the widget does not have focus.
* Fix handling of scroll-on-output to always scroll when we're at the bottomNalin Dahyabhai2002-03-172-5/+8
| | | | | * src/vte.c: Fix handling of scroll-on-output to always scroll when we're at the bottom of the buffer. * src/vteapp.c: Disable scroll-on-output by default.
* Rework tiling of background images, and implement a blinking cursor. SetNalin Dahyabhai2002-03-173-110/+109
| | | | | * src/vte.c src/vte.h: Rework tiling of background images, and implement a blinking cursor. * src/vteapp.c: Set blinking cursor by default.
* Corrections to some xterm control sequences.Nalin Dahyabhai2002-03-141-2/+19
| | | | * caps.c: Corrections to some xterm control sequences.
* Define PACKAGE correctly. Move most of the tear-down code into the widgetNalin Dahyabhai2002-03-143-41/+69
| | | | | * configure.in: Define PACKAGE correctly. * src/vte.c src/vteapp.c: Move most of the tear-down code into the widget finalize method; handle EOF and widget destruction correctly to prevent segfaults.
* Define PACKAGE.Nalin Dahyabhai2002-03-141-0/+1
| | | | * configure.in: Define PACKAGE.
* Disable gdk-pixbuf's deprecated functions. Discard non-ascii bytes toNalin Dahyabhai2002-03-142-2/+30
| | | | | * configure.in: Disable gdk-pixbuf's deprecated functions. * vte.c: Discard non-ascii bytes to clear logjams that happen when we pass invalid terminal data to iconv().
* fix missing includes implement background color setting, provide aNalin Dahyabhai2002-03-144-50/+172
| | | | | * iso8859mode.c utf8mode.c: fix missing includes * vte.c vte.h: implement background color setting, provide a function for setting the defaults, tile background images properly
* Remove gdk-pixbuf-xlib dependency by using just gdk-pixbuf. PerformNalin Dahyabhai2002-03-143-51/+50
| | | | | * configure.in vte.pc.in vte.c: Remove gdk-pixbuf-xlib dependency by using just gdk-pixbuf. * vte.c: Perform background image desaturation locally.
* Don't add the widget's allocation offsets when generating expose events.Nalin Dahyabhai2002-03-131-10/+10
| | | | * vte.c: Don't add the widget's allocation offsets when generating expose events.
* *vteapp.c: Don't try to use transparency for now.Nalin Dahyabhai2002-03-131-1/+1
|
* Add more functions that profterm can use.Anders Carlsson2002-03-132-0/+26
|
* Silent cvs and add gdk-pixbuf-xlib to depends in the .pc.in fileAnders Carlsson2002-03-132-1/+13
|
* Sliff sloffAnders Carlsson2002-03-131-1/+3
|
* ssshAnders Carlsson2002-03-131-0/+7
|
* Add gdk-pixbuf-xlib-2.0 as a module requirement.Nalin Dahyabhai2002-03-131-1/+1
| | | | * configure.in: Add gdk-pixbuf-xlib-2.0 as a module requirement.
* Add set_size, set_audible_bell, set_scroll_on_output,Nalin Dahyabhai2002-03-133-82/+386
| | | | | | | | | * vte.c: Add set_size, set_audible_bell, set_scroll_on_output, set_scroll_on_keystroke, copy_clipboard, paste_clipboard, set_background_image, set_background_image_file, and set_background_saturation. Also added a broken set_background_transparent. * vte.h: Add prototypes for those new functions.
* fix the name of a declared function (was _set_size, is _size_set)Nalin Dahyabhai2002-03-131-1/+1
| | | | * vte.c: fix the name of a declared function (was _set_size, is _size_set)
* Get rid of a global copy of the parent class. Implement ec, ic, and ICNalin Dahyabhai2002-03-131-13/+99
| | | | | * vte.c: Get rid of a global copy of the parent class. * vte.c: Implement ec, ic, and IC handlers.
* Fix a typo in a comment (we don't "omit" signals).Nalin Dahyabhai2002-03-131-2/+2
| | | | * vte.h: Fix a typo in a comment (we don't "omit" signals).
* caps.c: Recognize xterm cursor-character-absolute sequence.Nalin Dahyabhai2002-03-122-2/+16
| | | | | vte.c: Handle cursor-character-absolute. vte.c: Change the default font to "mono" 14 point when using Xft.
* Handle the ve (cursor visible) control sequence.Nalin Dahyabhai2002-03-121-2/+14
| | | | * vte.c: Handle the ve (cursor visible) control sequence.
* vte.c: Handle dec private mode set (cursor visibility).Nalin Dahyabhai2002-03-121-0/+3
|