The act of displaying a GUI component on a screen output device

learn more… | top users | synonyms

-1
votes
2answers
32 views

Java applet issue with painting

In my java applet I have an image following the cursor around the content pane. I also set a background image. When I move the cursor I am able to see the cursor image but the background flickers ...
-1
votes
2answers
33 views

Slow movement using paintComponent method

I decided to re-write my game using Swing's painting technique paintComponent() method(someone on SO actually told me to use this method). I decided to use JPanel as the game's base instead of Canvas. ...
0
votes
3answers
82 views

JPanel listeners and threads issues

Here is the code for displaying circles with varying radius on a panel inside a frame with a given delay rate, but the code is showing the final output not the intermediate stages i.e., the circles ...
1
vote
3answers
265 views

Is there already a canvas drawing directive for AngularJS out there?

Is there already a directive to draw/paint things on a canvas? So you can implement something like Paint or even something bigger like Photoshop etc., but a very basic example would suffice. I ...
1
vote
0answers
39 views

C# Panel is flickering. When I try CreateParams, the situation is much worse

The title pretty much says it. I have a panel inside of my form. I have lots of Shapes in the panel that bounce off of each other. The more shapes I have the worse the flickering is. After searching ...
0
votes
1answer
62 views

Java - Swing - painting (adding another shapes on a JPanel)

class that makes a JFrame, adds a JPanel on it and draws a rectangle on the JPanel class Frame { JFrame frame; myPanel panel; void draw() { frame = new JFrame ("qwertz"); ...
0
votes
0answers
36 views

Graphics.DrawImage slow in AnyCpu mode [closed]

Within a C# custom control[Winforms] I'm drawing a set of images in a circular view with random locations, where locations updated within a timer tick event. This is to illustrate a motion animation ...
1
vote
2answers
45 views

Cant set QBrush to QPainter

void Widget::paintEvent(QPaintEvent *) { QPainter painter(this); QBrush br; br.setColor(Qt::blue); painter.setBrush(br); // painter.setBrush(QBrush(Qt::blue)); ...
2
votes
5answers
110 views

Painting to objects on top of each other

I am trying to paint one Oval over another oval. Here i use a select statement to draw in the paint component method. import java.awt.*; public class test extends JPanel{ public static final int ...
0
votes
0answers
80 views

Android Different shapes for painting application

i want to make a painting application where i want to give options to the user to select a pattern for painting similar to "Infinite Painter APP" in Google-play. can you help me out in designing ...
0
votes
1answer
274 views

Android Drawing, Erasing and Undoing Action

Here is the code for Drawing and Undoing but unable to join with Erasing. It is either Drawing + Erasing or Drawing + Undoing but cannot three of these. public class Drawing extends View { private ...
3
votes
2answers
86 views

JScrollPane with transparent background and content

In my app, I show a popup dialog to show a large list of cards. I display them as images in many JLabel components in a JPanel subclass. I then put that object in a JScrollPane to allow for horizontal ...
0
votes
2answers
65 views

creating squares on event

I am trying to create a game with the same system as snake. I have created a window with a JPanel on it, given it a background and drawn lines to show the user the squares. Board is 600x600 (601x601 ...
0
votes
2answers
69 views

Scrolling a painted frame in wxPython

I currently have a wxPanel that I draw lines, text etc on to in response to paint events by using a device context from wx.PaintDC. However, my drawing can exceed the size of the panel and it ...
1
vote
2answers
965 views

How to draw a Round rectangle in java with normal rectangle outline

For my java application i need a Round rectangle with an outline that looks like a normal rectangle, like this I know you can do that by drawing a normal rectangle and a RoundRect inside it but i ...
0
votes
0answers
100 views

how to differentiate between 2 CGPaths one containing another?

I am working on a painting app in cocos2d, by drawing different CGPaths (on top of cocosd UIView), one containing another like shown in screen shot, the problem I am facing is in differentiating ...
0
votes
1answer
138 views

Getting System.ArgumentException

I'm trying to make a simple game but failing with this exception. System.ArgumentException: Parameter is not valid. at System.Drawing.Graphics.GetHdc() at ...
0
votes
0answers
232 views

How to draw in C++ with Mouse Down Event

I wanna draw some pixels with mouse and i wanna do it in C++ just like in Paint but so far i couldnt get it working. What i have done: // NewPaint.cpp : main project file. #include "stdafx.h" ...
0
votes
0answers
80 views

Why on the simulator the stroke lines are fine, but on the iphone device it is broken?

im having a simple paint app,, it compose of different color and undo & redo, eraser, and clear. when I'm try it on the simulator the line are fine but when i try it on the device it produce ...
1
vote
2answers
139 views

Darkening image using Graphics2D issue in Windows 7 64-bit

My small Java program is trying to darken a png image. It's working fine on my Mac but when I try to run it on a Windows PC with java 1.7_07 installed but it doesn't show anything at all except an ...
0
votes
1answer
154 views

How to Smooth the drawing Stroke?

I am creating drawing.. i can undo, and put colors on it. but when i draw using my fingers the stroke is not that smooth and has edge lines,, here my codes. on which I can Paint on a view, Undo, ...
0
votes
1answer
113 views

Strange behaviour while suspending main form painting

I have mdi forms which takes long time to load and thus bring a lot of flickering to the screen. In order to prevent flickering i used the sendmessage API as described here How do I suspend painting ...
1
vote
3answers
129 views

Win32 application windows eventually stop painting on Windows 7

I have a large, complex application written in C++ (no MFC or .NET). The client that uses the software most aggressively will, within an hour or so of starting it, get to a state where all the ...
1
vote
0answers
378 views

Brush tool texture for a painting app

Im working on a painting app which has a tool to brush similar to a painting brush. I've implemented so far through cocos2d, a format like the image . But my client wants clear edged texture as the ...
2
votes
2answers
424 views

How to achieve multi-layered drawing with OpenGL ES on iOS?

I wanted to very quickly to make a simple drawing app for iOS, but I can't quite get the drawing to work - well, to save the content on each layer and restore the layers. It appears like all layers ...
4
votes
1answer
822 views

Lazy rendering of Qt on OpenGL

i came about this problem and knew it could be done better. The problem: When overlaying a QGLWidget (Qt OpenGL contextview) with Qt widgets, Qt redraws those widgets after every Qt frame. Qt isn’t ...
0
votes
1answer
230 views

How to access the QListWidget or QListWidgetItem from a QAbstractItemDelegate

Is this even possible in Qt? I have a QListWidget setup with a delegate for specific painting, and I'm attempting to have the delegate paint differently based on variables in my QListWidget's parent. ...
2
votes
2answers
2k views

How to create rotating circle animation in java?

I want to create a rotating circle in the middle of JPanel and be able to set start/stop rotating and also set to visible/invisible. Does any body know how to do it or any existing example? private ...
0
votes
2answers
365 views

Saving in iOS paint app

I'm having a bit of trouble with saving the paint strokes in my iOS app. I've successfully saved text in my app by using NSUserDefaults, but I'm not sure if saving images works the same way, anyways, ...
0
votes
0answers
107 views

Brush antialias sampling

Does anyone have information about algorithms for sampling brushes so that they are antialiased for painting application? Like in Photoshop a rectangle doesn't just fill the edge with pure pixels ...
3
votes
2answers
860 views

How to erase finger paint on Custom UIView in iPhone

I have created a custom UIView (without .xib) for a finger paint application. Paint is working fine with custom UIView but my problem is that when I try to erase the painted path I am getting: ...
1
vote
2answers
197 views

Setting color in an iPad painting app

I was wondering if anyone could help me implement color selection in my iOS app. Right now, the painting line is only black, but I'd like the user to be able to change the color. Right now I have 5 ...
1
vote
2answers
476 views

Java JFrame painting

I've had this problem before but I don't remember how I fixed it. I'm working on a RAT and so far it just sends the clients screen to the server. I use to be saving the images to the disk but now I'm ...
3
votes
2answers
715 views

Java Swing: paint under components of a JPanel?

I have a JPanel that has a button in it. The location of the button is irrelevant. The paint(Graphics g) code is: @Override public void paint(Graphics g) { super.paint(g); ...
1
vote
1answer
200 views

MDI Child form painting issue

Do anyone have any comments about this issue. This is a MDI Child form displayed inside a MDI Client.And when i overlaps the forms partially on to another form then its no fully repainted. Is ...
1
vote
3answers
259 views

Cylinder is not being displayed on screen

Well, what i'm trying to do is to draw a Cylinder using GLUquadricObj and gluCylinder, the code compiles fine whatever the Cylinder is not being displayed on the OpenGL widget. void ...
3
votes
2answers
586 views

What is the most safe and correct way to paint on a TFrame surface?

I have a frame in my project (TFrame's descendant) and want to paint something on it. As I could see from forums, the common way to do that is to override PaintWindow method. I tried this on a ...
19
votes
5answers
3k views

Implementing smooth sketching and drawing on the <canvas> element

I am trying to create a drawing area with canvas. I am having trouble with making the lines look smooth when drawing curves and I also have changing line thickness in my algorithm which looks bad as ...
0
votes
2answers
412 views

Brush algorithm / Color fading pattern - Need suggestions

I'm currently trying to create a simple paint tool but I've come up with a problem, or perhaps need more of a suggestion. I'm trying to create a Brush, so when I paint a certain pixel "center", it ...
1
vote
4answers
700 views

Repainting Continuously in Java

I have a Java program that uses threads. In my run method, I have: public void run() { while(thread != null){ repaint(); System.out.println("hi"); try { ...
1
vote
1answer
386 views

Attempt to draw a rectangle goes left when it should go right and up when it should go down

My usage of the DrawReversibleFrame() method results in drawing an offset and reversed shadow of my dragging operation. The name of the method (DrawReversibleFrame()) seems to indicate that perhaps ...
2
votes
2answers
308 views

Good book on drawing algorithms, preferably in C or C++ [closed]

I need a recommendation for a good learning resource on drawing algorithms. I've found plenty of books on algorithms but it is mostly vector and matrix linear algebra, which does not cover the topics ...
7
votes
3answers
570 views

Webapp on iPad 3 retina display slow screen painting

I have a webapp for iPod touch and iPad. Works like a charm on iPad 1 and iPad 2. Now I have tested on a new iPad (iPad 3, iPad HD whatever name to be used) and I see that the painting of the screen ...
0
votes
1answer
689 views

Optimize drawing to buffer C#

Im trying to make a photoshop like application for my college project in c# So far I,ve created a custom panel called canvas and overloaded the paint method to draw the canvasBuffer. The project is ...
1
vote
0answers
97 views

JComponents does not show up on the screen with enabled double buffering

I am writing a 2D game with Swing. For the menu I use JButtons and now I want to use a JPasswordField. The problem is: If I try to write something in it, the programme crashes. I located the error to ...
0
votes
1answer
185 views

QIcon display part of image , possible?

I wanted to use a single image for all of my button images , and when displaying icons , i wanted to display only desired range of that image , is it possible ? Thanks !
0
votes
1answer
868 views

AS3 library for multiuser drawing application

There are several flashbased painting/sketching online apps that allow multiple users to paint simultaneously. Some examples: flockdraw.com scribblar.com twiddla.com For a project, we want to ...
-1
votes
1answer
597 views

Painting in Android

Hi Everybody, Am a fresher working with android. I am facing a problem with the painting activity in my application. Please check the below LINK for the code which i have used, ...
0
votes
2answers
916 views

How to clear the paint?

I am trying to erase the paint in my app? but it is not erase, when i am moving from one activity to another activity i want to erase the paint. please help me... This is the code i am using public ...
4
votes
1answer
1k 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(); ...

1 2 3