Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
5answers
11k views

How do I suspend painting for a control and its children?

I have a control which I have to make large modifications to. I'd like to completely prevent it from redrawing while I do that - SuspendLayout and ResumeLayout aren't enough. How do I suspend ...
10
votes
4answers
3k views

Tickmark algorithm for a graph axis

I'm looking for an algorithm that places tick marks on an axis, given a range to display, a width to display it in, and a function to measure a string width for a tick mark. For example, given that I ...
9
votes
3answers
1k views

Changing The Underlying Background Color Of A Swing Window

As discussed here, when resizing a Swing application in Vista (and Windows 7, which is what I'm using) you get a black background in the right/bottom corner while Swing's repaint catches up to the ...
6
votes
2answers
107 views

Bug or am I doing something wrong? Usercontrol Painting

private void UserControl1_Paint(object sender, PaintEventArgs e) { e.Graphics.DrawEllipse(Pens.Black, new Rectangle(-200, -500, this.Width + 400, this.Height + 420)); } Paste the above code into ...
5
votes
3answers
961 views

How can I inherit the system's anti-alias setting for painting text to off-screen images like swing does?

When I run my swing GUI applications under Java 6, they automatically use my configured sub-pixel anti-alias settings for all fonts. The result is much improved over standard AA options. But when I ...
4
votes
3answers
350 views

qpainter painting alternatives (performance sucks on Mac)

I have a class which displays waveform data of audiofiles in a QWidget (see screenshot of the widget below, back then i still used a gradient, which caused poor performance). The audio data is ...
4
votes
1answer
54 views

Should I reuse Points and Rectangles or create new ones?

In a method that gets called frequently, like a painting event, is it more efficient to reuse Point and Rectangle Objects (for specifying locations and bounds), or should I create new ones.
4
votes
3answers
1k views

How can I tell if a Delphi control is currently visible?

I need a way to for a custom control (descended from TCustomControl) to tell if it is currently visible. I'm not talking about the .Visible property; I mean whether or not it's actually being ...
3
votes
1answer
108 views

Java JFrame & JPanel Differences with Repaint()

I have been playing about with some simple painting of Graphics2D and have some extremely good help from the community here. I managed to get the flickering resolved from my "bouncy balls" by moving ...
3
votes
3answers
3k views

Re-paint problem on translucent frame/panel/component

I'm trying to create a translucent window with Java on OSX and add a JLabel to it. This JLabel changes its text every second.... However the component is not repainting well. How can I solve ...
2
votes
0answers
87 views

How to apply Graphics scale and translate to the TextRenderer

I'm using scaling and transforming my graphics object when painting a custom control, in order to apply zooming and scrolling. I use the following: Matrix mx = new Matrix(); ...
2
votes
1answer
154 views

how to create a paint app?

i'm trying to create a painting app, and what i know is it is related to canvas but i do not know how to use it. i followed the tutorial from Playing with graphics in android but it turns out to be ...
2
votes
1answer
133 views

Change JButton Shape while respecting Look And Feel

I know this question has been asked a million times, and can be done by overriding paintComponent(), but what I want to know is how to change the shape while respecting the current Look And Feel. If I ...
2
votes
1answer
136 views

English characters don't show up when entering text with Urdu fonts in Swing

This is similar to my own previous question, but that solution didn't work here. As mentioned in the previous question, I'm working on a cross platform(Windows/Ubuntu) application that has to ...
2
votes
1answer
453 views

Efficient Line Smoothing (Simplify)

I am creating a Painting Application in Actionscript (althought my question is not Actionscript related). The basic idea is to start painting when the mouse is pressed and tracking the mouse ...
2
votes
1answer
61 views

Programming Traditional Artists' Materials and Tools

Where is the Body of Knowledge for programmers interested in developing applications that simulate traditional artists' materials and tools, such as simulating natural paints? Is there any ...
2
votes
1answer
582 views

Custom painting of JPanel

I'm not very good at this and I hope to get some help from people who understands the issue a lot more that I do. So here's the deal. In my application there is background JPanel with Image drawn ...
2
votes
3answers
98 views

Measure the time required for an image to show on the screen?

I would like to measure the time it takes for an image to appear on-screen in Java. I can override the paint() method and see how long that method takes to execute, but I am not sure if the image is ...
2
votes
3answers
779 views

Need a little help with the Qt painting classes

I'm trying to write a paint program (paint where ever a mouse press/hold is detected), but I'm having trouble using the Qt QPainter. I have read the documentation on their web site and I'm still kind ...
2
votes
3answers
1k views

Using Java's Graphics or Graphics2D classes, how do I paint a String?

I have a String and I want to paint it onto an image. I am able to paint points and draw lines, however, even after reading the Text part of the 2D Graphics tutorial, I can't figure out how I can take ...
2
votes
1answer
944 views

Freeform drawing canvas (with shapes) in Java

I'm working on an GMF (RCP/EMF/GEF) application that allows users to create design diagrams. As part of that application, we have to allow the user to create their own custom shapes to add in ...
2
votes
1answer
1k views

C++/QT: drawing a caret

I'm learning QT. I just started to write a text editor from scratch by inheriting QAbstractScrollArea. I'm doing this just for practice. But now I'm faced with the problem of displaying a caret. What ...
2
votes
1answer
603 views

How do I paint a hosted NumericUpDown using the existing ToolStripRenderer?

I have a control which hosts a NumericUpDown in a ToolStripControlHost and exposes the NumericUpDown's properties. Functionally, that's fine, but when it's placed on a ToolStrip it doesn't fit ...
2
votes
4answers
3k views

Java Paint Method Doesn't Paint?

I'm working on a simple little swing component, and I'm tearing out my hair trying to figure out why my paint method isn't working. The idea behind this component is that it's a small JPanel with a ...
1
vote
2answers
51 views

Drawing API for java?

I want to be able to draw and erase on an image in java (NOT javascript). Are there any APIs for that? Bonus points if i can also draw vectors, but it's not necessary. I want to use it in my program, ...
1
vote
1answer
56 views

Qt/PyQt: How do I manually draw a caret?

I know a position within a QWidget where I would like to draw a caret. Calling paint redraws the entire widget, and I only want to redraw that one 'box' containing the caret/character. Is there a ...
1
vote
2answers
83 views

Block Mac UI controls painting/redrawing

Hello I was wondering if anyone could shed some light how I may enable/disable redrawing of any class inherited from a nsview? I know Windows has a message you can send to a hwnd to enable/disable ...
1
vote
3answers
253 views

How to change the background color for a QTreeView Header (aka QHeaderView)?

I am trying to change the background color for certain header sections. Some will use the default coloring, others will get a different color. The HeaderView doesn't accept delegates like the ...
1
vote
1answer
66 views

Qt's RasterOp_NotSourceXorDestination not working on MAC

I'm basically trying to give rubberbanding effect to my drawing, I'm using the setCompositionMode method of the QPainter to set the composition mode to RasterOp_NotSourceXorDestination its working ...
1
vote
0answers
439 views

OpenGL texture to erase

I am using OpenGl ES 1.1 on the iOS to create a draw/paint program. I am new to openGL but with all the information about I have managed to use a semi-trasnparent png texture to use as brush and draw ...
1
vote
1answer
179 views

Java Swing transparency drawing issues

Edit: I submitted a bug for the below (it may take a a few days to become approved though): http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7043319 Some more details: It works with Windows Sun ...
1
vote
0answers
101 views

WinForms panels not painting when in stack

I have a Panel that has an image as a background. I've added two panels (with transparent backgrounds) to this panel. I am responding to the onPaint event to draw things on them. only the panel in ...
1
vote
3answers
472 views

Java Swing: Clearing custom painting from a JPanel overlayed with other JPanels in a JLayeredPane

I've got a JLayeredPane containing three JPanels, two of which overlap, that I'm painting shapes to. One of the two JPanels that overlap needs to have every shape drawn to it cleared without ...
1
vote
2answers
823 views

Xcode - User drawn lines collision detection

Im making a game in which a UIImageView(ball) randomly bounces around the edges of the iphone screen. The user then must draw lines with their finger to guide the ball into a hole/target. I have ...
1
vote
3answers
714 views

How to draw shapes in WP7 with the finger?

How to draw shapes in WP7 with the finger? I am trying to implement a simple paint application but I am not sure how to make the drawing.
1
vote
3answers
434 views

JScrollPane usage

I have a JScrollPane and JPanel inside it(I want to draw on JPanel). Also I have a method that draws lines with parametre of length of the line. I want my JScrollPane to scroll if the length of the ...
1
vote
1answer
202 views

How to recreate such effect using actionscript/pixel bender?

Effect is generally in mostly vertical with slight horizontal offsets looks like: often used by paintors in sky painting like here
1
vote
3answers
454 views

Force immediate layout and paint in Swing

I cannot seem to force a layout in Swing. I have a JComponent added to a JLayeredPane and I set a border on the JComponent. Then, I want to immediately re-draw everything - not in the sense of "please ...
1
vote
3answers
709 views

How to improve painting performance of DataGridView?

(sorry for bad English) I have a big problem with performance of DataGridView when it re-paints. I'm using a DataGridView to show logs from an external application stream. Messages from the stream ...
1
vote
1answer
696 views

XNA weird 3D painting when painting text

I'm working on a 3D Spaceship game with XNA 3.1 I tried to separate my painting code from the game logic (altought XNA makes this almost). I'm using a special static class that paints my models on ...
1
vote
1answer
453 views

Zooming in/out and painting in openGL

I've recently had some issues implementing a zooming feature into a painting application. Please let me start off by giving you some background information. First, I started off by modifying Apple's ...
1
vote
1answer
398 views

Paint java GUI component to image file

Let's say I have JButton test = new JButton("Test Button"); and I want to draw the button into an image object and save it to a file. I tried this: BufferedImage b = new BufferedImage(500, 500, ...
1
vote
1answer
650 views

BlackBerry - Convert EncodedImage to byte []

I am using below code where i don't want to use JPEGEncodedImage.encode because it increases the size. So I need to directly convert from EncodedImage to byte array. FileConnection fc= ...
1
vote
2answers
1k views

QT: QPainter + GDI in the same widget?

I'm trying to use the method described here to use a QPainter and GDI calls on the same widget. Unfortunately this tutorial seem to have been written on an earlier version of QT and now it does not ...
1
vote
0answers
627 views

WPF doesn't always repaint when using WindowsFormsHost

I have a simple application which is hosting a Managed DirectX Control using WindowsFormsHost. I've overridden the paint methods in the Control to prevent flicker: protected override void ...
1
vote
2answers
139 views

Paint all pixels (excluding transparant) in PNG with Javascript/CSS?

I need to create a silhouette of a PNG with Javascript/CSS. Is this possible? I tried the following: Stack the PNG with lowered opacity multiple times with absolute positioning and z-index. This does ...
1
vote
1answer
249 views

Drawing pixels based on mouse position

Scenario: I have an area on the browser screen n x n in size (500px x 500px for example, ie 250,000 pixels). As the mouse rolls over the area, it "paints" the pixels it passes. Percentage of ...
1
vote
2answers
339 views

Delphi Form Painting Black Flash When Restoring

When I minimize and restore my Delphi application, the window contents flash a horrible black before (re)painting on Vista/Win7. This can also be seen with the Delphi 2007 IDE - the Object Inspector, ...
1
vote
4answers
902 views

Delphi/GDI+: When is a Device Context created/destroyed?

Normally using GDI+ in Delphi you can use a TPaintBox, and paint during the OnPaint event: procedure TForm1.PaintBox1Paint(Sender: TObject); var g: TGPGraphics; begin g := ...
1
vote
2answers
444 views

java to c# how to do custom painting in a panel

in java when you want to do custom painting in a panel, you usually override the paint() function. now i am looking for the corresponding function to override in a C# panel. also i would be thankful ...

1 2