Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
3answers
33k views

How to wrap text in LaTeX tables?

I am creating a report in LaTeX which invole a few tables. I'm stuck on that as my cell data in the table is exceeding the width of the page. Can I some how wrap the text so that it falls in to the ...
31
votes
6answers
17k views

CSS floats - how do I keep them on one line?

Hey, I want to have two items on the same line using 'float: left' for the item on the left. I have no problems achieving this alone. The problem is, I want the two items to stay on the same line ...
15
votes
1answer
2k views

Is there any way to get vim to auto wrap python strings at 79 chars?

I found this answer about wrapping strings using parens extremely useful, but is there a way in Vim to make this happen automatically? I want to be within a string, typing away, and have Vim just put ...
14
votes
3answers
967 views

Cursor Wrapping/Unwrapping in ContentProvider

I’m creating ContentProvider which is a proxy of another ContentProvider (for security issues and to give access to part of functionality of full app). public class GFContactsProvider extends ...
13
votes
3answers
16k views

How to wrap text of html button with fixed width

I just noticed that if you give a html button a fixed width, the text inside the button is never wrapped. I've tried it with word-wrap, but that cuts of the word even though there are spaces available ...
10
votes
9answers
3k views

Any way to automatically wrap comments at column 80 in Visual Studio 2008? ..or display where column 80 is?

Is there any way to automatically wrap comments at the 80-column boundary as you type them? ..or failing that, any way to display a faint line at the coulmn 80 boundary to make wrapping them manually ...
9
votes
11answers
2k views

When you write TeX source, how do you use your editor's word wrap?

Do you use "hard wrapping" (either yourself or automatically by your editor) by inserting newlines into your source document at a certain line length, or do you write your paragraphs in one continual ...
9
votes
3answers
972 views

How do I use Haskell's FFI on structs?

I have created the following C library for reading an image: typedef struct { unsigned int height; unsigned int width; unsigned char* red; //length=height*width unsigned char* green; ...
8
votes
2answers
4k views

Difference between hard wrap and soft wrap?

I am in the process of writing a text editor. After looking at other text editors I have noticed that a number of them refer to a "soft" versus "hard" wrap. What is the difference? I can't seem to ...
7
votes
12answers
1k views

Where to wrap a line of code, especially long argument lists?

What's your preferred way of wrapping lines of code, especially when it comes to long argument lists? There has been several questions relating to wrapping lines (such as When writing code do you ...
6
votes
7answers
330 views

Wrapping Containers to Maintain Consistency

I'm wondering if it's a good idea to wrap C++ STL containers to maintain consistency and being able to swap the implementation without modifying client code. For example, in a project we use ...
6
votes
3answers
330 views

Is there a way to wrap all JavaScript methods with a function?

I want to wrap every function call with some logging code. Something that would produce output like: func1(param1, param2) func2(param1) func3() func4(param1, param2) Ideally, I would like an API ...
6
votes
1answer
287 views

Passing C++ object to C++ code through Python?

I have written some physics simulation code in C++ and parsing the input text files is a bottleneck of it. As one of the input parameters, the user has to specify a math function which will be ...
6
votes
3answers
1k views

Why can't I stop vim from wrapping my code?

I know there must be something obvious I'm missing, but I can't stop vim from wrapping my python code. I enter :set nowrap like a champ, but still it wraps. I can hit J to unite the split lines of ...
6
votes
8answers
1k views

Clean, efficient algorithm for wrapping integers in C++

/** * Returns a number between kLowerBound and kUpperBound * e.g.: Wrap(-1, 0, 4); // Returns 4 * e.g.: Wrap(5, 0, 4); // Returns 0 */ int Wrap(int const kX, int const kLowerBound, int ...
5
votes
2answers
131 views

CSS: 3 divs with atypical wrapping

I'm trying to accomplish some atypical div behavior, so I'm not sure if this is possible. I have three divs which sit next to one another horizontally: A, B, and C (from left to right). When the ...
5
votes
2answers
591 views

How to use Emacs to write comments with proper indentation, line-length, and wrapping?

I'm tired of writing comments that look like this { # bla bla blabla bla blabla bla blabla # bla bla blabla bla blabla bla blabla bla blabla bla blabla bla bla # blaaa bla } I have to ...
5
votes
3answers
653 views

Python PEP8 printing wrapped strings without indent

There is probably an easy answer for this, just not sure how to tease it out of my searches. I adhere to PEP8 in my python code, and I'm currently using OptionParser for a script I'm writing. To ...
5
votes
1answer
276 views

Line wrapping within emacs *compilation* buffer

I have a little problem with compiling my project in emacs. The compilation buffer does not line-wrap and I have some very long compile and link commands which I would like to sanity check sometimes. ...
5
votes
8answers
7k views

How to prevent the floating layout wrapping when firefox zoom is reduced

Given the following HTML. It display two columns: #left, #right. Both are fixed width and have 1px borders. Width and borders equal the size of upper container: #wrap. When I zoom out Firefox 3.5.2 ...
4
votes
2answers
560 views

Extending numpy with cython

I am trying to wrap a header file which has lots of functions like this test.h void test(int N, int* data_in, int* data_out); so that I can use those from numpy. Right now I have the following ...
4
votes
3answers
526 views

Java: create new implementation of type at runtime?

So, I realize the answer to this is probably "it's hard", but: I've got a weird idea, and was wondering if it's possible in Java to create a method like: <T> T wrapInterface (Class<T> ...
4
votes
2answers
623 views

Tips on wrapping a C library in Objective-C

I have a library written in C that I would like to use in an Objective-C app, either on the Mac or the iPhone. Unfortunately, since this library is being written by individuals in the open source ...
4
votes
2answers
12k views

Latex floating and text wrapped image

I have a LaTeX document with an image in it. There is a section, four subsections, the latter 3 having just some text, and the first having a description environment with some stuff. I want to have ...
4
votes
3answers
2k views

Text wrapping in WPF hyperlink

In my WPF application I have this: <StackPanel> <TextBlock> <Hyperlink> <TextBlock TextWrapping="Wrap" Name="HyperlinkText" /> </Hyperlink> ...
4
votes
10answers
557 views

Is it a best practice to wrap arrays and their length variable in a struct in C?

I will begin to use C for an Operating Systems course soon and I'm reading up on best practices on using C so that headaches are reduced later on. This has always been one my first questions ...
4
votes
2answers
1k views

C to Python via SWIG: can't get void** parameters to hold their value

I have a C interface that looks like this (simplified): extern bool Operation(void ** ppData); extern float GetFieldValue(void* pData); extern void Cleanup(p); which is used as follows: void * p = ...
4
votes
3answers
802 views

Algorithm for re-wrapping hard-wrapped text?

Let's say that I have written a custom e-mail management application for the company that I work for. It reads e-mails from the company's support account and stores cleaned-up, plain text versions of ...
3
votes
2answers
80 views

Java: how can I format text on an OutputStream to the width of the user's console?

Specifically, I would like text sent to the user's OutputStream to have word wrapping so that when text continues onto a new line, words are not broken up. So instead of this: The quick brown fox j ...
3
votes
1answer
74 views

The benefits of the new jQuery's library wrapping technique

I just notice that there is some changes in the jQuery source in it's library wrapping technique. As I remember in version 1.4 they used this library wrapping: (function(...){ var jQuery = ...
3
votes
5answers
329 views

Getting TD cell width to wrap around div with specified width %

Here's my current HTML / CSS: http://jsfiddle.net/S8Bne/ And here's a screenshot that annotates what I'd like to try to do: Basically, I'd like the width of the parent TD to dynamically wrap based ...
3
votes
7answers
436 views

Java Mappings and Primitives

I want to create a mapping that takes a string as the key and a primitive as the value. I was looking at the Java docs and did not see that Primitive was a class type or that they shared some kind of ...
3
votes
1answer
150 views

Is there a way to unwrap a Tclkit packed exe?

I have an exe that has been wrapped using this method: http://www.kocjan.org/tclmentor/10-tclkits-building-standalone-tcl-binaries.html Is there any way to unpack it back into a .kit file or a vfs ...
3
votes
2answers
126 views

ReSharper wrapping test result stacktraces?

ReSharper 4.5's test runner will run MSTest tests out of the box, and that's what I'm doing. When a test fails, I click on the test to see the stacktrace and the failure reason. The pane I'm ...
3
votes
1answer
151 views

Fire event on Word-Wrap

Is there some way to find out when the text gets wrapped (WordWrap) inside a RichTextBox? I've dug around quite a bit but haven't found anything so far, will keep looking though... The reason I'm ...
3
votes
2answers
210 views

Retrieving a resource file from an exe

I'm wrapping files with Visual C++ 2008, I've figured out how to embed them but I can't figure out how to retrieve them. I have some C++ experience, but none with Win32 or Visual C++. The goal of ...
3
votes
2answers
874 views

Howto prevent eclipse from line wrapping in XML and HTML files?

is it possible to completely stop eclipse from line wrapping XML and HTML files? It is easy to do this i.e. for java files, but I couldn't find similar settings for XML and HTML files. Thanks in ...
3
votes
1answer
3k views

How to pass pointer to an array in Python for a wrapped C++ function

I am new to C++/Python mixed language programming and do not have much idea about Python/C API. I just started using Boost.Python to wrap a C++ library for Python. I am stuck at wrapping a function ...
3
votes
6answers
3k views

How to prevent Vim indenting wrapped text in parentheses

This has bugged me for a long time, and try as I might I can't find a way round it. When I'm editing text (specifically latex, but that doesn't matter) files, I want it to auto-wrap at 80 columns. It ...
3
votes
7answers
5k views

CSS: how can I force a long string (without any blank) to be wrapped in XUL and/or HTML

I have a long string (a DNA sequence). It does not contain any whitespace character. e.g.: ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGCTGACGATGCTACGATGCGAGCATCTACGATCAGTCGATGTAGCTAGTAGCATGTAGTGA what ...
3
votes
3answers
1k views

Is there an Objective-C Wrapper for gSOAP?

I'm going to use gSOAP to interact with a WCF webservice in my Mac project. It does pretty much exactly what I need and it does it well (pretty much the exact opposite of WSMakeStubs;)). The only ...
2
votes
1answer
31 views

Is there a way to wrap a structure that is named like a keyword (eg. print)?

I have some C source code and want to wrap it in Cython. Now, the problem is, that there is a structure called print, and externing it throws a syntax error. cdef extern from "foo.h": struct ...
2
votes
1answer
43 views

Text wrap'ing [CSS]

I'm finishing my web site http://centrosokoladine.lt/ And how you can see there is in middle left some picture covered with text, and I need to wrap that text. Image is set like those box'es bakground ...
2
votes
3answers
316 views

Stop emacs from wrapping 80 column lines in an 80 column terminal?

In an 80 column wide terminal emacs wraps 80 column lines, putting a backslash in the 80th column. Is there a way to tell emacs to use all 80 columns of my terminal and not wrap lines until they ...
2
votes
1answer
132 views

Can JQuery detect the last element on a line before it wraps on the second line?

<style> .ms_menu ul{list-style:none;} .ms_menu ul li{float:left; padding:5px; border-right:1px solid #000000;} .ms_menu ul li:last-of-type{border-right:none;} </style> ...
2
votes
1answer
282 views

Wrapping a template function with boost.python

I'm trying to expose the following c++ function to python using boost.python: template <typename genType> genType refract( genType const & I, genType const & N, ...
2
votes
2answers
817 views

Wrapping text using simple_list_item_multiple_choice

I'm using a SimpleCursorAdapter to display a single CheckedTextView. I know this is done best using simple_list_item_multiple_choice and android.R.id.text1. adapter = new ...
2
votes
3answers
126 views

Why is my text not wrapping around my images?

Stupid question maybe, but I cannot seem to get the text to wrap around my images. In the editor it looks fine, everything is wrapped around it, but when I save it, there is no wrapping. example: ...
2
votes
2answers
51 views

Approach to data wrapping

I'm developing in PHP and MySQL. The information about the currently logged in user is stored in many different tables. The information that I need on each page, I preload. However if something is ...
2
votes
2answers
768 views

wxPython problems with Wrapping StaticText

I am having an issue with wxPython. A simplified version of the code is posted below (white space, comments, etc removed to reduce size - but the general format to my program is kept roughly the ...

1 2 3 4