Detecting mouse click on a line

I'm learning making GUI apps in Java.
Here is my problem. Suppose I draw a line on a JPanel. If I want to find out if the line is clicked or not, what is the best way to do it?
I did some research, looked at API. If I suppose my line is Line2D, then since its a line it doesn't have an area, so its contains method always returns false (..from API). So i dig around some more and came up with the solution of getting the shape from the stroke and calling its contains method.
This is a code for what i mean..
private Line2D.Double testLine;
//mouse clicked event
public void mouseClicked(MouseEvent e) {
        int x = e.getX();
        int y = e.getY();
        BasicStroke stroke = new BasicStroke(4);
        Shape testShape = stroke.createStrokedShape(testLine);
        if(testShape.contains(x,y)){
            System.out.println("this will be printed if clicked on line");
    }Well, the above solution works fine.
Is it the right way of doing it or is there a better way around for this?
Any help will be appreciated.
Thanks.

When trying to test if a line was pressed I usually test if the distance between the mouse coordinates and the line is smaller than some constant (usually 5 pixels).
For this you have to write your own code to calculate the distance between a point and a line.

Similar Messages

  • Detecting mouse clicks in editable cell of JTable

    Hi everyone :)
    I thought that this question might have been asked before, but I have searched the forums extensively and have not been able to find the solution.
    What I want to achieve is to detect single and double mouse clicks on JTable cells (that are editable).
    For example, I have a JTable and there exists within it an editable cell. If the user clicks on it once then that cell goes into edit mode, and the user can type directly into the cell. I have already successfully implemented this.
    However, what I also want to do is detect a double-click so that I can pop up a dilaog that shows a list of default values that the user can select.
    So here is what I want;
    1. User clicks on the cell once.
    2. Cell moves into edit mode.
    3. If the user clicks again within a certain time interval then cancel edit mode and pop up a dialog containing values that the user can select from.
    I think that to do this I need to be able to detect mouse clicks on the cell that is currently being edited. So far I have been unable to discover how this is done. I have even tried extending JTextField to get what I want, but with no luck.
    Any help would be greatly appreciated.
    Kind regards,
    Ben Deany

    Thanks for the reply.
    Unfortunately, it is not possible to call 'AddMouseListener()' on a cell editor. You are only able to call 'addCellEditorListener()' and that only allows two events to the broadcast (edit cancel, and edit stop).
    Ben

  • How to detect mouse clicks on desktop?

    Hi All,
    I need to detect mouse clicks on the desktop and find out mouse position on the screen. How to listen to mouse events if I don't have any swing components like containers, panels, windows, etc? All things like "addMouseListener" are supposed to be with such components. But my program is running in the background and it doesn't have any graphical interfaces. So, I need to detect if a mouse button is pressed at any position on the screen.
    Thanks for any help!

    Why? What program feature do you intend to offer, by knowing what a user clicks on (besides the application itself).Hi, well what I have to do is to start the application minimized in the system tray. Then the application must be listening for crtl+shift+left click in any part of the desktop or an opened application, when that happens, I have to show a window asking if the user want to take a screenshot starting in the x,y point he clicked, once done, I have to take an screenshot...so on.
    How can I do that? Can anybody give me a hint? Thanks in advance.

  • Detect mouse clicks or keyboard events on desktop or everywhere

    Hi,
    What I have to do is to start the application minimized in the system tray. Then the application must be listening for crtl+shift+left mouse click in any part of the desktop or an opened application, when that happens, I have to show a window asking if the user want to take a screenshot starting in the x,y point he clicked and then take the screenshot.
    What I don't know how to do is to detect the mouse and keyboard events when the application is supposed to be running minimized in the system tray.
    How can I do that? Can anybody give me a hint?
    Thanks in advance.

    It's not possible with plain Java. You will need native code for this. Take a look at JNA.

  • How to detect mouse click event?

    Hello,
    I would like to have a vi to detect left, right and no mouse click. I mean that in the vi attached, Button2 should be 0 (no click), 1 (left c.) or 2 (right c.) depending on the event occured in i-1. cycle. My vi is the modyfied version of the one found here:
    http://www.ni.com/example/27663/en/
    Sometimes it works fine, but another time nothing happens when I click.
    I think the main problem is with the execution times at the for loop and event structure.
    Could you help me how to deal with the problem?
    Thanks you!
    Attachments:
    mouse1.vi ‏12 KB

    Hi VampireEmpire,
    Your For loop iterates twice. If an event occures during first iteration everything is fine - Button 2 refreshes during second iteration. But what happens when an event occures during second iteration? Does Button 2 have a possibility to refresh? 
    1. Do you see the problem now?
    2. And if you do - do you really need For loop? I would suggest you trying removing it and connecting shift register to the while loop.
    Bluesheep

  • Detect mouse click in FlashPlayer ActiveX

    I'm hosting the FlashPlayer ActiveX control (Flash9f.ocx) in
    a VB 6 application. The OCX exposes the following events:
    FlashCall, OnProgress, OnReadyStateChange and FSCommand. It does
    not expose the traditional Click, MouseUp or MouseDown events (for
    example) so is there a way to receive mouse click events in the
    hosted application?
    Also, I am unable to find any documentation on the FlashCall
    event. Any ideas what it is and how it works?
    Thanks to any and all.

    jList1.addMouseListener(new java.awt.event.MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    jList1_mouseClicked(e);
    public void jList1_mouseClicked(MouseEvent e){
    JOptionPane.showMessageDialog(null,"test"); }
    I got it. Thanks.
    I forgot to add the MouseListener initally

  • I want to detect mouse click on JTextFild

    I want do some opration on JTextField when
    Click on JextField how should i do that
    please tell me
    Rahul

    Quit cluttering the forum by posting your question 4 times.
    You've already been given the answer in one of your posting, but you've you've made so many postings on the same topic that you can't even find your original posting.

  • Detecting a mouse click on any (all) child components...

    Hey All,
    I am writing a number of compound GUI elements that i want to make focusable when you click any part of them. (i.e. a JTextArea inside a JScrollPane, coupled to a JTextField to provide input to the JTextArea).
    Is there an easy way to detect mouse clicks on child components of a JPanel?
    My current code is:
    m_oInputBox.addMouseListener(this);
    m_oOutputBox.addMouseListener(this);
    m_oScrollPane.getVerticalScrollBar().addMouseListener(this);
    This detects most of the mouse clicks, but not those on the buttons that form the scroll bar ends or the scroll bar slider when it is present.
    Any way tou can detect clicks on these too??
    Iso

    P.S. It does actually detect clicks on the scroll bar slider - just not onthe buttons that form the slider end caps (up/down).
    Iso

  • Mouse click on graph without event handling

    Is there a way to detect mouse click on a graph without the event handling? My base version of LabVIEW does not have event handling features.
    Thanks,
    Ryan
    Solved!
    Go to Solution.

    Leaving out the Event Structure seems like cruel and unusual punishment.  My scorn is divided about 80/20 between NI for selling it and whoever tried to save a few bucks by buying it and then sticking it to you to workaround.  Perhaps you are a student in which case you are free labor and it is all good.
    Maybe your boss is a purist and dislikes Event Structures because they break the dataflow paradigm.  The alternative is of course polling, and in this case you have plenty of data flowing!  Unfortunately 99.9% of it is worthless.  Here is a little example in LV8.2 (don't know your version) that uses polling to check on the mouse button.  I only added a simple check for the button being pressed, if you want to know click (down/up) you can add a shift register and look for transitions in the button.  I do check that the front panel is up front, otherwise it will still register clicks even though you may be surfing the web.
    Hopefully everything is in the base package.
    Attachments:
    MouseClickNoEvent.vi ‏26 KB

  • Mouse clicks not detected on JTabbedPane

    Hi all,
    I have a JPanel placed inside a JTabbedPane. I want to double-click on the JPanel and bring up a JDialog. This works fine if the JPanel is not in a JTabbedPane, but if it is on a JTabbedPane, then the mouse clicks are not detected. I'd greatly appreciate any help you can give me.

    Here is a sample program that seems to work:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class TestInternalFrame extends JFrame
         public TestInternalFrame()
              JDesktopPane desktop = new JDesktopPane();
              setContentPane( desktop );
              JInternalFrame internal = new JInternalFrame( "Internal Frame" );
              desktop.add( internal );
              internal.setLocation( 50, 50 );
              internal.setSize( 300, 300 );
              internal.setVisible( true );
              JTabbedPane tabbedPane = new JTabbedPane();
              internal.getContentPane().add(tabbedPane);
              tabbedPane.setPreferredSize( new Dimension(300, 200) );
              JPanel panel = new JPanel();
              tabbedPane.add( "Empty Panel", panel );
              panel.addMouseListener( new MouseAdapter()
                   public void mouseClicked(MouseEvent e)
                        System.out.println(e.getClickCount());
         public static void main(String args[])
    TestInternalFrame frame = new TestInternalFrame();
    frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
    frame.setSize(400, 400);
    frame.setVisible(true);

  • Detect mouse down or click outside

    Hello,
    I'm trying to detect Mouse Down or Click event outside of a TextInput element.
    This doesn't work:
    myInput.addEventListener(FlexMouseEvent.MOUSE_DOWN_OUTSIDE,aHorseWalksIntoABarAndTheBarten derAsksHeyWhyTheLongFace);

    Hm... It's a custom TextInput component, I need to listen to this from inside it.
    How does DateField or DropDownList do this? They close the DateChooser and List when clicking outside.
    I saw something to do with mx_internal, but I'm not sure if I should be using that.

  • Detecting missing mouse clicks?

    There are some times when a user clicks on a movie clip in my
    SWF that the mouse click goes undetected by any of my mouse event
    handlers.
    I even added a MouseClick listener at the root sprite of my
    SWF.
    Is there any way to detect where this mouse click is going,
    and why it is not being detected by anything?
    NOTE: I have *only* seen this happen so far when a user
    clicks on a movie clip that I have dynamically loaded. The movie
    clip is not playing, and I am manually calling gotoAndStop() on the
    movie clip various times. Not sure if that is related.

    please don't cross post.

  • On right mouse click, there is no "save as" or "copy image" when I want to save a pictureon line. I have to go back to IE to access this option. Is this not available? Many thanks, Joy

    On right mouse click, there is no "save as" or "copy image" when I want to save a picture on line. I have to go back to IE to use this option. Is this not available? Many thanks, Joy
    There are so many occasions on line when I want to save an image that I can't believe I can't do so using Firefox, which I find so good in all other ways. I can Bookmark, save a page or send a link, but not take a simple copy image.

    Hi, Many thanks for replying, it's much appreciated. I started Firefox in safe mode and found I had the full right click menu on a pic on my home page. However, after moving around the web, I've found that the problem still occurs in eBay and it doesn't make any difference in safe mode. still no full menu. After returning to normal mode, I find that this still stands i.e. I do get the full menu on other sites but not in eBay. As I often want to save a pic in Ebay and can do so in IE, I'm baffled as to why this one site is giving problems. As this is where I've mostly been trying to save pics, I didn't realise that it was a "one site" problem and not applicable to everywhere else. If IE didn't work in this respect, I could blame the eBay site, but it does, so that just makes it more puzzling - and very annoying! I have tried accessing Ebay direct, rather than clicking on the toolbar, but this makes no difference. Any further thoughts would be much appreciated. Joy

  • TreeSelectionListener detect if mouse click

    hi,
    i've got a JTree and I'm using a TreeSelectionListener to carry out different actions when the user clicks on nodes. however, sometimes i want to change the selection on the tree programmatically (i know how to do this bit), and for the action associated with clicking on the node not to happen.
    is it possible within the valueChanged method of the TreeSelectionListener to determine if the selection was changed by a mouse click or programmatically? or can anyone think of another way to approach this?
    cheers for any help!

    You can't do that with the event, but if you create a boolean variable named for example
    boolean programSelection = false;
    and when you change the selection programmatically you put the value to true. In the method valueChanged you have to test the value of programSelection like that :
    public void valueChanged(ChangeEvent e) {
       if (programSelection) {
          // the code when the selection come from the program
         programSelection = false;
       else {
          // the code when the selection come from the user
    }

  • Weird mouse click behaviour

    Hi,
    I don't really know how to explain this. Somethimes, in some situations, my mouse clicks registers twice. Like sometimes I can't minimize an applicatireaon by clicking on the taskbar entry, because the click registers twice and the application minimizes but right after that restores too. It happens with both right and left mouse buttons. Sometimes can't bring up the rigth click menu in thunar, because it appears and right after that disappears, but if I rigth click elsewhere,in an another application, it works. So it happens only with certain elements of the gui, it isn't that everywhere I click, it counts twice, only with a specific menu, or with the taskbar, or with an icon on my desktop - but can drive me crazy.
    With equinox gtk engine it happens more often than with clearlooks engine
    I observed this behavior with Linux Mint Debian Edition and with openSUSE with certain themes, and now with Arch. I don't think it is a hardware error, because it appears only with some elements of the desktop, not everywhere everytime, I don't think my mouse knows that I want to minimize firefox and decides to mailfunction just to drive me crazy
    Does anybody else observed this? Has anybody an idea how can I fix it?
    I use Xfce, but when I tried LMDE, I used Gnome, my apps are up to date, the mouse is a A4tech G6.

    I have the same behavior along with an additional clause that sometimes mouse clicks will not register at all.
    I am using i3...so I do not think its DE/WM specific. Been looking at xev...but it doesn't show up anything.
    Here's my Xorg.0.log, no errors as such, some information about using evdev for the mouse at the very end.
    [ 22.077]
    X.Org X Server 1.10.2
    Release Date: 2011-05-28
    [ 22.077] X Protocol Version 11, Revision 0
    [ 22.077] Build Operating System: Linux 2.6.38-ARCH x86_64
    [ 22.077] Current Operating System: Linux wolfdale 2.6.39-ARCH #1 SMP PREEMPT Mon Jun 27 21:26:22 CEST 2011 x86_64
    [ 22.077] Kernel command line: root=/dev/disk/by-uuid/2531f3c1-e139-48c0-bbda-a6650b58eb0c ro
    [ 22.077] Build Date: 30 May 2011 08:18:15AM
    [ 22.077]
    [ 22.077] Current version of pixman: 0.22.0
    [ 22.077] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 22.077] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 22.077] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jun 29 19:50:11 2011
    [ 22.099] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 22.109] (==) No Layout section. Using the first Screen section.
    [ 22.109] (==) No screen section available. Using defaults.
    [ 22.109] (**) |-->Screen "Default Screen Section" (0)
    [ 22.110] (**) | |-->Monitor "<default monitor>"
    [ 22.110] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 22.110] (==) Automatically adding devices
    [ 22.110] (==) Automatically enabling devices
    [ 22.130] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 22.130] Entry deleted from font path.
    [ 22.175] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 22.175] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 22.175] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 22.175] (II) Loader magic: 0x7d3440
    [ 22.175] (II) Module ABI versions:
    [ 22.175] X.Org ANSI C Emulation: 0.4
    [ 22.175] X.Org Video Driver: 10.0
    [ 22.175] X.Org XInput driver : 12.2
    [ 22.175] X.Org Server Extension : 5.0
    [ 22.175] (--) PCI:*(0:1:0:0) 1002:94c1:1028:0d02 rev 0, Mem @ 0xd0000000/268435456, 0xfe9f0000/65536, I/O @ 0x0000dc00/256, BIOS @ 0x????????/131072
    [ 22.175] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 22.175] (II) LoadModule: "extmod"
    [ 22.205] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 22.217] (II) Module extmod: vendor="X.Org Foundation"
    [ 22.217] compiled for 1.10.2, module version = 1.0.0
    [ 22.217] Module class: X.Org Server Extension
    [ 22.217] ABI class: X.Org Server Extension, version 5.0
    [ 22.217] (II) Loading extension MIT-SCREEN-SAVER
    [ 22.217] (II) Loading extension XFree86-VidModeExtension
    [ 22.217] (II) Loading extension XFree86-DGA
    [ 22.217] (II) Loading extension DPMS
    [ 22.217] (II) Loading extension XVideo
    [ 22.217] (II) Loading extension XVideo-MotionCompensation
    [ 22.217] (II) Loading extension X-Resource
    [ 22.217] (II) LoadModule: "dbe"
    [ 22.217] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 22.222] (II) Module dbe: vendor="X.Org Foundation"
    [ 22.222] compiled for 1.10.2, module version = 1.0.0
    [ 22.222] Module class: X.Org Server Extension
    [ 22.222] ABI class: X.Org Server Extension, version 5.0
    [ 22.222] (II) Loading extension DOUBLE-BUFFER
    [ 22.222] (II) LoadModule: "glx"
    [ 22.222] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 22.242] (II) Module glx: vendor="X.Org Foundation"
    [ 22.242] compiled for 1.10.2, module version = 1.0.0
    [ 22.242] ABI class: X.Org Server Extension, version 5.0
    [ 22.242] (==) AIGLX enabled
    [ 22.242] (II) Loading extension GLX
    [ 22.242] (II) LoadModule: "record"
    [ 22.242] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 22.250] (II) Module record: vendor="X.Org Foundation"
    [ 22.250] compiled for 1.10.2, module version = 1.13.0
    [ 22.250] Module class: X.Org Server Extension
    [ 22.250] ABI class: X.Org Server Extension, version 5.0
    [ 22.250] (II) Loading extension RECORD
    [ 22.250] (II) LoadModule: "dri"
    [ 22.250] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 22.264] (II) Module dri: vendor="X.Org Foundation"
    [ 22.264] compiled for 1.10.2, module version = 1.0.0
    [ 22.264] ABI class: X.Org Server Extension, version 5.0
    [ 22.264] (II) Loading extension XFree86-DRI
    [ 22.264] (II) LoadModule: "dri2"
    [ 22.264] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 22.265] (II) Module dri2: vendor="X.Org Foundation"
    [ 22.265] compiled for 1.10.2, module version = 1.2.0
    [ 22.265] ABI class: X.Org Server Extension, version 5.0
    [ 22.265] (II) Loading extension DRI2
    [ 22.265] (==) Matched ati as autoconfigured driver 0
    [ 22.265] (==) Matched vesa as autoconfigured driver 1
    [ 22.265] (==) Matched fbdev as autoconfigured driver 2
    [ 22.265] (==) Assigned the driver to the xf86ConfigLayout
    [ 22.265] (II) LoadModule: "ati"
    [ 22.265] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 22.273] (II) Module ati: vendor="X.Org Foundation"
    [ 22.273] compiled for 1.10.0, module version = 6.14.1
    [ 22.273] Module class: X.Org Video Driver
    [ 22.273] ABI class: X.Org Video Driver, version 10.0
    [ 22.274] (II) LoadModule: "radeon"
    [ 22.274] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 22.319] (II) Module radeon: vendor="X.Org Foundation"
    [ 22.319] compiled for 1.10.0, module version = 6.14.1
    [ 22.319] Module class: X.Org Video Driver
    [ 22.319] ABI class: X.Org Video Driver, version 10.0
    [ 22.325] (II) LoadModule: "vesa"
    [ 22.335] (WW) Warning, couldn't open module vesa
    [ 22.335] (II) UnloadModule: "vesa"
    [ 22.335] (II) Unloading vesa
    [ 22.335] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 22.335] (II) LoadModule: "fbdev"
    [ 22.335] (WW) Warning, couldn't open module fbdev
    [ 22.335] (II) UnloadModule: "fbdev"
    [ 22.335] (II) Unloading fbdev
    [ 22.335] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 22.335] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS
    [ 22.340] (--) using VT number 7
    [ 22.343] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 22.343] (II) [KMS] Kernel modesetting enabled.
    [ 22.344] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 22.344] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 22.344] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 22.344] (==) RADEON(0): Default visual is TrueColor
    [ 22.344] (==) RADEON(0): RGB weight 888
    [ 22.344] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 22.344] (--) RADEON(0): Chipset: "ATI Radeon HD 2400 XT" (ChipID = 0x94c1)
    [ 22.344] (II) RADEON(0): PCIE card detected
    [ 22.344] drmOpenDevice: node name is /dev/dri/card0
    [ 22.344] drmOpenDevice: open result is 9, (OK)
    [ 22.344] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 22.344] drmOpenDevice: node name is /dev/dri/card0
    [ 22.344] drmOpenDevice: open result is 9, (OK)
    [ 22.344] drmOpenByBusid: drmOpenMinor returns 9
    [ 22.344] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 22.345] (II) Loading sub module "exa"
    [ 22.345] (II) LoadModule: "exa"
    [ 22.345] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 22.346] (II) Module exa: vendor="X.Org Foundation"
    [ 22.346] compiled for 1.10.2, module version = 2.5.0
    [ 22.346] ABI class: X.Org Video Driver, version 10.0
    [ 22.346] (II) RADEON(0): KMS Color Tiling: disabled
    [ 22.346] (II) RADEON(0): KMS Pageflipping: enabled
    [ 22.346] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 22.356] (II) RADEON(0): Output DIN has no monitor section
    [ 22.410] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 22.423] (II) RADEON(0): Output DVI-1 has no monitor section
    [ 22.436] (II) RADEON(0): EDID for output DIN
    [ 22.490] (II) RADEON(0): EDID for output DVI-0
    [ 22.490] (II) RADEON(0): Manufacturer: DEL Model: 4042 Serial#: 1145451340
    [ 22.490] (II) RADEON(0): Year: 2009 Week: 34
    [ 22.490] (II) RADEON(0): EDID Version: 1.3
    [ 22.490] (II) RADEON(0): Digital Display Input
    [ 22.490] (II) RADEON(0): Max Image Size [cm]: horiz.: 43 vert.: 27
    [ 22.490] (II) RADEON(0): Gamma: 2.20
    [ 22.490] (II) RADEON(0): DPMS capabilities: Off
    [ 22.490] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 22.490] (II) RADEON(0): Default color space is primary color space
    [ 22.490] (II) RADEON(0): First detailed timing is preferred mode
    [ 22.490] (II) RADEON(0): redX: 0.654 redY: 0.331 greenX: 0.220 greenY: 0.679
    [ 22.490] (II) RADEON(0): blueX: 0.148 blueY: 0.055 whiteX: 0.313 whiteY: 0.329
    [ 22.490] (II) RADEON(0): Supported established timings:
    [ 22.490] (II) RADEON(0): 720x400@70Hz
    [ 22.490] (II) RADEON(0): 640x480@60Hz
    [ 22.490] (II) RADEON(0): 640x480@67Hz
    [ 22.490] (II) RADEON(0): 640x480@72Hz
    [ 22.490] (II) RADEON(0): 640x480@75Hz
    [ 22.490] (II) RADEON(0): 800x600@56Hz
    [ 22.490] (II) RADEON(0): 800x600@60Hz
    [ 22.490] (II) RADEON(0): 800x600@72Hz
    [ 22.490] (II) RADEON(0): 800x600@75Hz
    [ 22.491] (II) RADEON(0): 832x624@75Hz
    [ 22.491] (II) RADEON(0): 1024x768@60Hz
    [ 22.491] (II) RADEON(0): 1024x768@70Hz
    [ 22.491] (II) RADEON(0): 1024x768@75Hz
    [ 22.491] (II) RADEON(0): 1280x1024@75Hz
    [ 22.491] (II) RADEON(0): 1152x864@75Hz
    [ 22.491] (II) RADEON(0): Manufacturer's mask: 0
    [ 22.491] (II) RADEON(0): Supported standard timings:
    [ 22.491] (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 22.491] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 22.491] (II) RADEON(0): #2: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 22.491] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 22.491] (II) RADEON(0): #4: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 22.491] (II) RADEON(0): #5: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 22.491] (II) RADEON(0): Supported detailed timing:
    [ 22.491] (II) RADEON(0): clock: 146.2 MHz Image Size: 433 x 271 mm
    [ 22.491] (II) RADEON(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0
    [ 22.491] (II) RADEON(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0
    [ 22.491] (II) RADEON(0): Serial No: G433H98MDF3L
    [ 22.491] (II) RADEON(0): Monitor name: DELL 2009W
    [ 22.491] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 165 MHz
    [ 22.491] (II) RADEON(0): EDID (in hex):
    [ 22.491] (II) RADEON(0): 00ffffffffffff0010ac42404c334644
    [ 22.491] (II) RADEON(0): 22130103802b1b782eb705a75438ad26
    [ 22.491] (II) RADEON(0): 0e5054bfef80714f8180b300950081c0
    [ 22.491] (II) RADEON(0): 81000101010121399030621a274068b0
    [ 22.491] (II) RADEON(0): 3600b10f1100001c000000ff00473433
    [ 22.491] (II) RADEON(0): 334839384d4446334c0a000000fc0044
    [ 22.491] (II) RADEON(0): 454c4c2032303039570a2020000000fd
    [ 22.491] (II) RADEON(0): 00384b1e5310000a2020202020200004
    [ 22.491] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 22.491] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 22.491] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 22.491] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    [ 22.491] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 22.491] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    [ 22.491] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 22.491] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 22.491] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    [ 22.491] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    [ 22.491] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 22.491] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 22.491] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 22.506] (II) RADEON(0): EDID for output DVI-1
    [ 22.506] (II) RADEON(0): Output DIN disconnected
    [ 22.507] (II) RADEON(0): Output DVI-0 connected
    [ 22.507] (II) RADEON(0): Output DVI-1 disconnected
    [ 22.507] (II) RADEON(0): Using exact sizes for initial modes
    [ 22.507] (II) RADEON(0): Output DVI-0 using initial mode 1680x1050
    [ 22.507] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 22.507] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f8ca000
    [ 22.507] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 22.507] (==) RADEON(0): DPI set to (96, 96)
    [ 22.507] (II) Loading sub module "fb"
    [ 22.507] (II) LoadModule: "fb"
    [ 22.507] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 22.517] (II) Module fb: vendor="X.Org Foundation"
    [ 22.517] compiled for 1.10.2, module version = 1.0.0
    [ 22.517] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 22.517] (II) Loading sub module "ramdac"
    [ 22.517] (II) LoadModule: "ramdac"
    [ 22.517] (II) Module "ramdac" already built-in
    [ 22.517] (--) Depth 24 pixmap format is 32 bpp
    [ 22.517] (II) RADEON(0): [DRI2] Setup complete
    [ 22.517] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 22.517] (II) RADEON(0): Front buffer size: 7128K
    [ 22.517] (II) RADEON(0): VRAM usage limit set to 222868K
    [ 22.531] (==) RADEON(0): Backing store disabled
    [ 22.531] (II) RADEON(0): Direct rendering enabled
    [ 22.541] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 22.541] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 22.541] (II) EXA(0): Driver registered support for the following operations:
    [ 22.541] (II) Solid
    [ 22.541] (II) Copy
    [ 22.541] (II) Composite (RENDER acceleration)
    [ 22.541] (II) UploadToScreen
    [ 22.541] (II) DownloadFromScreen
    [ 22.541] (II) RADEON(0): Acceleration enabled
    [ 22.541] (==) RADEON(0): DPMS enabled
    [ 22.541] (==) RADEON(0): Silken mouse enabled
    [ 22.550] (II) RADEON(0): Set up textured video
    [ 22.550] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 23.153] (--) RandR disabled
    [ 23.153] (II) Initializing built-in extension Generic Event Extension
    [ 23.153] (II) Initializing built-in extension SHAPE
    [ 23.153] (II) Initializing built-in extension MIT-SHM
    [ 23.153] (II) Initializing built-in extension XInputExtension
    [ 23.153] (II) Initializing built-in extension XTEST
    [ 23.153] (II) Initializing built-in extension BIG-REQUESTS
    [ 23.153] (II) Initializing built-in extension SYNC
    [ 23.153] (II) Initializing built-in extension XKEYBOARD
    [ 23.153] (II) Initializing built-in extension XC-MISC
    [ 23.153] (II) Initializing built-in extension SECURITY
    [ 23.153] (II) Initializing built-in extension XINERAMA
    [ 23.153] (II) Initializing built-in extension XFIXES
    [ 23.153] (II) Initializing built-in extension RENDER
    [ 23.153] (II) Initializing built-in extension RANDR
    [ 23.153] (II) Initializing built-in extension COMPOSITE
    [ 23.153] (II) Initializing built-in extension DAMAGE
    [ 23.295] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 23.295] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 23.295] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 23.295] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 23.295] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 23.296] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r600_dri.so
    [ 23.296] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 23.303] (II) RADEON(0): Setting screen physical size to 444 x 277
    [ 23.674] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 23.674] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 23.674] (II) LoadModule: "evdev"
    [ 23.675] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 23.683] (II) Module evdev: vendor="X.Org Foundation"
    [ 23.683] compiled for 1.10.0, module version = 2.6.0
    [ 23.683] Module class: X.Org XInput Driver
    [ 23.683] ABI class: X.Org XInput driver, version 12.2
    [ 23.683] (II) Using input driver 'evdev' for 'Power Button'
    [ 23.683] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 23.683] (**) Power Button: always reports core events
    [ 23.683] (**) Power Button: Device: "/dev/input/event1"
    [ 23.713] (--) Power Button: Found keys
    [ 23.713] (II) Power Button: Configuring as keyboard
    [ 23.713] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 23.713] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 23.713] (**) Option "xkb_rules" "evdev"
    [ 23.713] (**) Option "xkb_model" "evdev"
    [ 23.713] (**) Option "xkb_layout" "us"
    [ 23.734] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 23.734] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 23.734] (II) Using input driver 'evdev' for 'Power Button'
    [ 23.734] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 23.734] (**) Power Button: always reports core events
    [ 23.734] (**) Power Button: Device: "/dev/input/event0"
    [ 23.750] (--) Power Button: Found keys
    [ 23.750] (II) Power Button: Configuring as keyboard
    [ 23.750] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 23.750] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 23.750] (**) Option "xkb_rules" "evdev"
    [ 23.750] (**) Option "xkb_model" "evdev"
    [ 23.750] (**) Option "xkb_layout" "us"
    [ 23.752] (II) config/udev: Adding input device Dell Dell USB Keyboard Hub (/dev/input/event5)
    [ 23.752] (**) Dell Dell USB Keyboard Hub: Applying InputClass "evdev keyboard catchall"
    [ 23.752] (II) Using input driver 'evdev' for 'Dell Dell USB Keyboard Hub'
    [ 23.752] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 23.752] (**) Dell Dell USB Keyboard Hub: always reports core events
    [ 23.752] (**) Dell Dell USB Keyboard Hub: Device: "/dev/input/event5"
    [ 23.766] (--) Dell Dell USB Keyboard Hub: Found keys
    [ 23.766] (II) Dell Dell USB Keyboard Hub: Configuring as keyboard
    [ 23.766] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2.1/3-2.1:1.0/input/input5/event5"
    [ 23.766] (II) XINPUT: Adding extended input device "Dell Dell USB Keyboard Hub" (type: KEYBOARD)
    [ 23.766] (**) Option "xkb_rules" "evdev"
    [ 23.766] (**) Option "xkb_model" "evdev"
    [ 23.766] (**) Option "xkb_layout" "us"
    [ 23.767] (II) config/udev: Adding input device Dell Dell USB Keyboard Hub (/dev/input/event6)
    [ 23.767] (**) Dell Dell USB Keyboard Hub: Applying InputClass "evdev keyboard catchall"
    [ 23.767] (II) Using input driver 'evdev' for 'Dell Dell USB Keyboard Hub'
    [ 23.767] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 23.767] (**) Dell Dell USB Keyboard Hub: always reports core events
    [ 23.767] (**) Dell Dell USB Keyboard Hub: Device: "/dev/input/event6"
    [ 23.783] (--) Dell Dell USB Keyboard Hub: Found absolute axes
    [ 23.783] (--) Dell Dell USB Keyboard Hub: Found keys
    [ 23.783] (II) Dell Dell USB Keyboard Hub: Configuring as mouse
    [ 23.783] (II) Dell Dell USB Keyboard Hub: Configuring as keyboard
    [ 23.783] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2.1/3-2.1:1.1/input/input6/event6"
    [ 23.783] (II) XINPUT: Adding extended input device "Dell Dell USB Keyboard Hub" (type: KEYBOARD)
    [ 23.783] (**) Option "xkb_rules" "evdev"
    [ 23.783] (**) Option "xkb_model" "evdev"
    [ 23.783] (**) Option "xkb_layout" "us"
    [ 23.783] (II) Dell Dell USB Keyboard Hub: initialized for absolute axes.
    [ 23.783] (**) Dell Dell USB Keyboard Hub: (accel) keeping acceleration scheme 1
    [ 23.783] (**) Dell Dell USB Keyboard Hub: (accel) acceleration profile 0
    [ 23.783] (**) Dell Dell USB Keyboard Hub: (accel) acceleration factor: 2.000
    [ 23.783] (**) Dell Dell USB Keyboard Hub: (accel) acceleration threshold: 4
    [ 23.784] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event3)
    [ 23.784] (II) No input driver/identifier specified (ignoring)
    [ 23.785] (II) config/udev: Adding input device Dell Premium USB Optical Mouse (/dev/input/event4)
    [ 23.785] (**) Dell Premium USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 23.785] (II) Using input driver 'evdev' for 'Dell Premium USB Optical Mouse'
    [ 23.785] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 23.785] (**) Dell Premium USB Optical Mouse: always reports core events
    [ 23.785] (**) Dell Premium USB Optical Mouse: Device: "/dev/input/event4"
    [ 23.810] (--) Dell Premium USB Optical Mouse: Found 14 mouse buttons
    [ 23.810] (--) Dell Premium USB Optical Mouse: Found scroll wheel(s)
    [ 23.810] (--) Dell Premium USB Optical Mouse: Found relative axes
    [ 23.810] (--) Dell Premium USB Optical Mouse: Found x and y relative axes
    [ 23.810] (II) Dell Premium USB Optical Mouse: Configuring as mouse
    [ 23.810] (II) Dell Premium USB Optical Mouse: Adding scrollwheel support
    [ 23.810] (**) Dell Premium USB Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 23.810] (**) Dell Premium USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 23.810] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.0/input/input4/event4"
    [ 23.810] (II) XINPUT: Adding extended input device "Dell Premium USB Optical Mouse" (type: MOUSE)
    [ 23.810] (II) Dell Premium USB Optical Mouse: initialized for relative axes.
    [ 23.810] (**) Dell Premium USB Optical Mouse: (accel) keeping acceleration scheme 1
    [ 23.810] (**) Dell Premium USB Optical Mouse: (accel) acceleration profile 0
    [ 23.810] (**) Dell Premium USB Optical Mouse: (accel) acceleration factor: 2.000
    [ 23.810] (**) Dell Premium USB Optical Mouse: (accel) acceleration threshold: 4
    [ 23.810] (II) config/udev: Adding input device Dell Premium USB Optical Mouse (/dev/input/mouse0)
    [ 23.810] (II) No input driver/identifier specified (ignoring)
    [ 23.813] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 23.813] (II) No input driver/identifier specified (ignoring)

Maybe you are looking for