Commit Graph

48739 Commits

Author SHA1 Message Date
Stephan Aßmus
7d66167e17 TextDocumentLayout: Line info and refactoring
* Added LineIndexForOffset()
 * Extracted _ParagraphLayoutIndexForOffset()
2013-12-07 00:18:00 +01:00
Stephan Aßmus
e3dc81cc9b ParagraphLayout: Added line info methods
* CountLines()
 * LineIndexForOffset()
 * Bug fixes in GetTextBounds()
2013-12-07 00:18:00 +01:00
Stephan Aßmus
ab86f2c321 TextDocumentLayout::GetTextBounds(): Forget to offset...
... by the vertical offset of the ParagraphLayout containing
the text offset.
2013-12-07 00:17:59 +01:00
Stephan Aßmus
60eb71494a TextDocumentLayout: Added GetTextBounds(). 2013-12-07 00:17:58 +01:00
Stephan Aßmus
586ec1c10b TextDocument: Added Length() 2013-12-07 00:17:57 +01:00
Stephan Aßmus
a681c327ed ParagraphLayout: Added GetTextBounds(). Untestet. 2013-12-07 00:17:57 +01:00
Stephan Aßmus
cd50559dde ParagraphLayout: Added CountGlyphs() 2013-12-07 00:17:56 +01:00
Ingo Weinhold
dac7b7c980 Fix various 64 bit related warnings
Mostly printf() format strings and signed-unsigned comparisons.
Fixes the x86_64 build.
2013-12-06 14:17:58 +01:00
Jerome Duval
bff0809603 x86_64: fixed GLTeapot and libglut build 2013-12-05 23:52:24 +01:00
Ingo Weinhold
736fe5bc63 Fix build with TRANSLATION_MAP_TRACING enabled 2013-12-05 21:44:54 +01:00
Ingo Weinhold
4600788b1d Fix more translator build feature dependencies 2013-12-05 21:24:22 +01:00
Ingo Weinhold
fdfd52743b JPEGTranslator Jamfile: Fix build feature dependencies
Move jpeg build feature references into the architecture loop. While
they have the same name, these actually are different build features
(using different packages).
2013-12-05 21:09:49 +01:00
Ingo Weinhold
1604cdaef8 Update -Werror work-around for arch_debug_console.o
Fixes the gcc 2 build again.
2013-12-05 20:42:06 +01:00
Ingo Weinhold
372b309a4a X86VMTranslationMapPAE: Fix gcc 2 warning
... which due to the reactivated -Werror causes the build to fail.
2013-12-05 20:42:06 +01:00
Jerome Duval
9e46d51cc2 ffmpeg plugin only needs to link against ffmpeg libs.
* clean the ffmpeg build feature.
2013-12-05 18:04:13 +01:00
Ingo Weinhold
724f4e2d38 Fix kernel -Werror support
The introduction of secondary arch support for kernel files disabled
-Werror for all kernel files, since the -Werror flags were moved from
{CC,C++}FLAGS to TARGET_WARNING_{CC,C++}FLAGS_<arch>, which, however,
was overwritten by the SetupKernel rule. This commit introduces new
global variables {HAIKU,HOST,TARGET}_WERROR_FLAGS[_<arch>], which
contain the additional -Werror flags to be applied for the architecture.
The config variable WARNINGS can be set to "treatAsErrors" to cause
-Werror and {HOST,TARGET}_WERROR_FLAGS[_<arch>] to be appended to the
compilation flags.

Fixes #10280.
2013-12-05 12:48:22 +01:00
Ingo Weinhold
7b83ce1142 Add KDL command "mapping"
* VMTranslationMap:
  - Add DebugPrintMappingInfo(): Given a virtual address it is supposed
    to print the paging structure information for that address. To be
    implemented by derived classes.
  - Add DebugGetReverseMappingInfo(): Given a physical addresss it is
    supposed to find all virtual addresses mapped to it. To be
    implemented by derived classes.
* X86VMTranslationMapPAE: Implement the new methods
  DebugPrintMappingInfo() and DebugGetReverseMappingInfo().
* Add KDL command "mapping". It supports both virtual address lookups
  and reverse lookups.
2013-12-05 05:13:21 +01:00
Rene Gollent
75c19f7043 Debugger: Clean up DwarfFile::_GetDebugInfoPath().
- Fix a regression introduced when refactoring for the removal of /boot/common,
and adjust to use BPathFinder::FindPath() with implicit existence check instead
of manual iteration.
2013-12-04 22:56:42 -05:00
Ingo Weinhold
7b59a61790 ICNSTranslator Jamfile: Fix libpng dependency 2013-12-05 02:26:51 +01:00
Rene Gollent
2ebca67e77 Debugger: Fix indentation error from previous commit. 2013-12-04 18:16:23 -05:00
Rene Gollent
9fa5a2f925 Debugger: Always include disassembly/frame dump in reports. 2013-12-04 18:12:40 -05:00
Rene Gollent
acaa4271a2 Debugger: Refactor DwarfFile to use BPathFinder. 2013-12-04 18:12:32 -05:00
Ingo Weinhold
be012e2122 /etc/profile: Also source profile.d/*.sh files in data dirs
This allows packages to place files in data/profile.d to manipulate
the shell environment. They could already use settings/etc/profile.d,
but since there's no point in editing those files in most cases, placing
them there nonetheless doesn't make much sense.
2013-12-04 23:21:14 +01:00
Ingo Weinhold
5760191f1f findpaths: Add option -R/--reverse
It causes the paths to be printed in reverse order.
2013-12-04 23:21:13 +01:00
Ingo Weinhold
7162730128 findpaths: Fix subpath support
Due to an incorrect a specified subpath would be ignored.
2013-12-04 23:21:13 +01:00
Jerome Duval
23e82de9fa x86_64: publish some media libraries
* ffmpeg, libogg, libtheora, libvorbis, libvpx, speex
2013-12-04 21:37:35 +01:00
Jerome Duval
1a37a812a4 ffmpeg: fix x86_64 build, remove libbz2
* AVCodecDecoder: for x86_64, use libswscale, asm is only for x86.
* CpuCapabilities: init capabilities to zero, fixes style.
* gfx_util.cpp: protect x86 specific code, fallback to C.
* x86_64: don't include unneeded x86 stuff.
* all arch: libbz2 is a build feature.
2013-12-04 21:30:21 +01:00
Jerome Duval
1fe06744d4 libmedia: use size_t consistently in rtm_pool.
* fixed a bad address error on x86_64.
2013-12-04 21:30:21 +01:00
Adrien Destugues
ab3fd9c828 Move {en,de}code_base64 to the support kit
It's not possible to use these from the network kit otherwise, as it
would create a circular dependency (mail > bnetapi > mail).

Is there a better way to solve this problem?
2013-12-04 13:51:31 +01:00
Gerasim Troeglazov
5287b8a778 ntfs: Directory position must be signed 2013-12-04 12:45:29 +00:00
Gerasim Troeglazov
0d4e157ba4 ntfs: Fix several warnings 2013-12-04 12:45:28 +00:00
Gerasim Troeglazov
da0906f232 ntfs: Update ntfs3g 2013-12-04 12:45:27 +00:00
Adrien Destugues
9e47d4f714 Terminal tabs: use B_WITH_FROM_LABEL
B_WIDTH_FROM_WIDEST leads to only 2 or 3 tabs visible when one of the
tabs has a long title. This can be rather annoying as we have no way
of scrolling the tabs to see the ones that are pushed out of the window.
2013-12-04 13:28:58 +01:00
Rene Gollent
fab28082af Fix ICNSTranslator hybrid build. 2013-12-03 16:55:45 -05:00
Adrien Destugues
6d9f0064ff Bring the hybrid translators back into the image. 2013-12-03 21:00:14 +01:00
Jérôme Duval
97f865f72a Avoid undefined behavior by using unsigned int instead of int.
* 1 << 31, 2 << 30, 3 << 30 replaced by 1U << 31, 2U << 30 or 3U << 30.
2013-12-03 18:40:25 +01:00
Adrien Destugues
f36e1414b7 Cookie Jar: allow setting cookies on "file" URLs.
* These are shared with HTTP cookies set for localhost. We probably want
to split them apart later on, so cookies should store and check the
protocol, additionally to the path and domain.
* Fixes #10195.
2013-12-03 16:42:54 +01:00
Adrien Destugues
dc6d2ef664 HttpRequest: simplify and optimize receiving loop
* Do not start with a ridiculously small buffer for socket reads.
Sockets return data they have available, instead of trying to fill as
much of the buffer as possible. In some cases a single Ethernet frame
can hold a complete request.
* Remove some looping and try parsing all the request in sequence each
time we receive some bytes.
* Avoid reallocating a temporary buffer each time we read some data from
the socket. Instead, allocate it once, and grow it as needed. Since
servers usually send chunks of equal size, we should get away with one
reallocation on the first chunk.
2013-12-03 09:46:59 +01:00
Jérôme Duval
2031159e73 ActivityMonitor: completes hrev46476
* set the settings window feel to modal when going always on top.
* fix the settings window activation when already opened.
2013-12-02 19:40:29 +01:00
Freeman Lou
89e0a7fb84 ActivityMonitor: Settings now modal when always on top enabled.
* #9534

Signed-off-by: Jérôme Duval <jerome.duval@gmail.com>
2013-12-02 17:39:01 +01:00
Ingo Weinhold
043ffc015a Update gcc 4 package for x86
Disables ASLR for the executables, so pre-compiled headers will work
correctly.
2013-12-02 17:02:32 +01:00
Gerasim Troeglazov
8e3ba61f64 Sort translators list in alphabetical order 2013-12-02 09:43:40 +00:00
Gerasim Troeglazov
13d76c0648 Add Photoshop Image file to mime_db 2013-12-02 09:32:49 +00:00
Puck Meerburg
fdc8f5b8c2 Tracker: Use Alt-L to set focus on Navigator's location
* Alt-L shortcut sets the focus to location input view in single navigation mode;
* Fixes #9602.

- GCI2013
2013-12-01 22:54:47 +01:00
Freeman Lou
a6e7154312 top: use alternate screen buffer for info output
* output teams information into alternate screen output - like in
  other operating systems - prevent Terminal history from trashing with
  multiple screenshots of displayed information;
* Fixes #9509.

- GCI 2013
2013-12-01 22:54:44 +01:00
Freeman Lou
e056d32027 StyledEdit: Use RecentItems helper instead of private impl.
* Switch recent documents list to use RecentItems.h helper instead of
  homebrewn implementation;
* Fixes #9999.

- GCI 2013
2013-12-01 22:54:42 +01:00
Ezo
ccfb80f995 Listusb: add parsing AudioControl and AudioStreaming
* Added support for parsing Class Specific Audio Control Interface
  descriptors (as in USB Audio 1 specification);
* Added support for parsing Class Specific Audio Streaming Interface
  descriptors and Endpoints (as in USB Audio 1 specification);
* Implements #10238 request.

- GCI 2013
2013-12-01 22:54:39 +01:00
Freeman Lou
491bbe7797 DriveSetup: Implement optimal zoom for main window
* Fixes #6265 and #8672.

- GCI 2013
2013-12-01 22:54:36 +01:00
Freeman Lou
abc7fddf07 DriveSetup: Context menu for drives/partitions added
* Fixes #9906.

- GCI 2013
2013-12-01 22:54:34 +01:00
Jérôme Duval
334c06ae65 usb: enforce wMaxPacketSize on high speed bulk endpoints.
* according to the USB 2.0 specification.
2013-12-01 22:37:54 +01:00