Sirius editor with Kieler/KLay layouter resizes nodes

Hi,
I have been trying to use the Kieler layout algorithms on diagrams that are created by a Sirius based editor.
Each time I relayout the diagram, using the Kieler based layout algorithm, diagram nodes are resized; they are enlarged.
I suspect that this is a problem of the Kieler layout algorithms but I want to know whether anyone has also tried this and if someone has found a solution for this issue already.
Greetings,
Wilbert

OK
I think I found something.
For some reasons, the Kieler (layered) layout algorithm considers each node to be a subgraph on its own. If the diagram is layouted, it first starts layouting its subgraphs and then the graph itself. The layout algorithm can be configured using properties. In fact, each item on the graph can have some properties. One of them is the Border Spacing which has a default value is 12.
So whenever a diagram is layouted, first all nodes are 'layouted'. As they are considered to be sugraphs, the Border Spacing property is applied which increases the size of the subgraphs with 24 pixels (12 on each side). Then the nodes on the diagram themselves are relayouted, taking the new size into account.
I am not sure whether the Sirius editor does something that leads Kieler to the conclusion that each node is a subgraph on its own or that Kieler interprets the Sirius generated diagram wrongly. So I'm not sure 'who to blame'.
So I think that I have a (manual) workaround. After displaying the graph for the first time, I need to select all nodes and set their border spacing property to zero. Selecting all nodes can be done with one action so that makes this workable.
I'm open for any additional suggestions.
Greetings,
Wilbert.

Similar Messages

  • Running total with Layout Editor with BI Publisher 11g

    Hello,
    I'm trying to create a report with BI Publisher Layout Editor using the "running total" option. My XML looks like this:
    <G_1>
    <REGION>MZ</REGION>
    <G_2>
    <INVOICE_NB>1</INVOICE_NB>
    <VALUE>1000</VALUE>
    </G_2>
    <G_2>
    <INVOICE_NB>2</INVOICE_NB>
    <VALUE>3000</VALUE>
    </G_2>
    </G_1>
    and I want to insert in the layout a data table with this information:
    |REGION | RUNNING TOTAL
    |MZ | 1000
    | | 4000
    I inserted a new data table with the region and the value. I grouped the Region to the left (Grouping -> Group Left).
    Then I selected the Value column and clicked on Formula -> Running Total, but nothing happened with this last step. Am i forgotting something? How can I display Running Totals on a Data Table with BI Publisher (using Layout editor and not RTF Templates)?
    Thank you,
    Josep

    Use the following: Declare a variable before the loop: <?xdoxslt:set_variable($_XDOCTX, 'RTotVar', 0)?>
    In your loop: Include the following code for your Running Total Column: <?xdoxslt:set_variable($_XDOCTX, 'RTotVar', xdoxslt:get_variable($_XDOCTX, 'RTotVar') + VALUE)?><?xdoxslt:get_variable($_XDOCTX, 'RTotVar')?>
    For an example of the RTF : Look for the files under your local BI Publisher Desktop installation: BI Publisher Desktop\samples\RTF templates\Advanced\Running Total
    Thanks,
    Bipuser

  • Layout resizing confusion

    After having worked a bit with the various layout components in JavaFX, what confuses me most is how to consistently get a child node to resize itself to fill the entire width or height (or both) of the parent node. Sometimes it does, and sometimes it does not, and those two variations are neither always compatible with my intentions.
    As a simple example, how do I get a SplitPane to fill the entire stage? And a TableView to fill the entire height and widht of the left side of that split pane, and another SplitPane to fill the entire height and width of the right side?
    And why? What are the rules?

    Knut Arne Vedaa wrote:
    Thanks.No worries :)
    Ok, so I gather that whatever I add to Scene, StackPane, SplitPane and BorderPane center will fill the entire area. To be fair, this is sort of mentioned in the API doc for (at least some of) these components. (It could however, be better documented what combinations of panes to use in order to achieve various specific real-world layout scenarios.)It's all quite similar to layout based UIs (such as Swing and AWT) so for people coming from that background (such as myself) it's relatively intuitive. If you're coming from something else, I can see that it could be confusing. I reckon the JFX docco guys would appreciate feedback on ways to make it better: http://blogs.oracle.com/thejavatutorials/entry/share_your_ideas
    However, for (the somewhat confusingly named) SplitPane it says:SplitPane is one that is 'split' into sub-sections. Again the name makes sense to me, but that could just be my background.
    "Nodes needs to be placed inside a layout container before they are added into the SplitPane."This javadoc is odd, I agree. It is perhaps a recommended practice (i.e. you will normally want to layout what you add to the split pane) but I don't think it is required.
    First, this doesn't seem to be true (e.g. from your example). More importantly, what is a generic "layout container"? Anything subclassed from Pane? Yep, anything from Pane, but really it's a generic concept more than a specific class. You could create your own 'layout container' by extending Group and manually lay out the components in it if you really wanted to.
    And is Stackpane the most generic or general-purpose of these if I just want something to put something else inside? (Or need to put some padding around something?) That doesn't make semantic sense. (I.e. I'm not trying to stack something on top of each other.) And Pane itself doesn't resize its content.StackPane is really for layering things on top of each other. I'd probably choose between BorderPane, FlowPane, HBox and VBox for the basic building blocks.
    And as another example, if I wanted to say simply divide a Scene, or some subpane, in two halfs, each taking a pre-specified percentage of the height (or width, depending on the orientation), with whatever I put inside each halfs filling the entire area, which layout container should I use?A few (actually lots of) options for this, your easiest is probably to use a VBox and use the 'grow' attribute to size them. If you want to get more funky (i.e. percentage distributions) then it might be time to look at GridPane or for ultimate, ninja like power, MigPane.
    Generally you will be using composition of multiple layouts within each other (unless you use MigPane - which often ends up with just one and lots of constraints).
    Here's the VBox example (with a bit of extra spice, just for fun):
    public class TestApp extends Application
        public static void main(String[] args)
            Application.launch(args);
        public void start(Stage stage) throws Exception
            BorderPane rootPane = new BorderPane();
            rootPane.setStyle("-fx-background-color: #f99; -fx-padding: 10");
            // build a tool bar
            HBox toolbar = new HBox(4);
            toolbar.getChildren().add(new Label("This is a HBox"));
            toolbar.getChildren().add(new TextField());
            toolbar.getChildren().add(new Button("Good for something like a toolbar"));
            rootPane.setTop(toolbar);
            // build a content area (split vertically)
            VBox contentPane = new VBox(10);
            contentPane.setStyle("-fx-background-color: #99f; -fx-padding: 10");
            // top part of content
            GridPane topPane = new GridPane(); // or could use FlowPane, HBox, VBox, BorderPane, MigPane, etc
            topPane.setStyle("-fx-background-color: #ff9;");
            topPane.add(new Label("This is a GridPane, good for forms"), 0, 0, 2, 1);
            topPane.add(new Label("Field 1"), 0, 1);
            topPane.add(new TextField(), 1, 1);
            topPane.add(new Label("Field 2"), 0, 2);
            topPane.add(new TextField(), 1, 2);
            VBox.setVgrow(topPane, Priority.ALWAYS);
            contentPane.getChildren().add(topPane);
            // bottom part of content
            VBox bottomPane = new VBox(10); // or could use FlowPane, HBox, VBox, BorderPane, MigPane, etc
            bottomPane.setStyle("-fx-background-color: #ff9;");
            bottomPane.getChildren().add(new Label("This is a VBox, it does a vertical flow"));
            bottomPane.getChildren().add(new Label("Good for simple cases"));
            VBox.setVgrow(bottomPane, Priority.ALWAYS);
            contentPane.getChildren().add(bottomPane);
            rootPane.setCenter(contentPane);
            Scene scene = new Scene(rootPane, 800, 600);
            stage.setScene(scene);
            stage.show();
    }I would typically break this down into lots of methods (like buildToolbarArea() and buildContentArea()) just for code maintainability and readability but that's entirely up to you.
    (I don't mean to be overly critical. Just exploring this stuff, and giving some feedback on confusing corners of it...)Explore away. We're all pretty new to it. This forum is generally pretty good though.

  • Drag n Drop image along with the ability to resize the image in hbox

    Hi All,
    Is there an application similar to paint where we can drag n drop images and also resize them in javafx application? and also can we draw a line and also resize it?
    Thank You
    Edited by: SathyaRao on Jun 3, 2012 3:08 AM
    Edited by: SathyaRao on Jun 3, 2012 6:49 AM

    Hello sathyaRao,
    I don't think there is anything like that . You need to develop by yourself . I've written some blog post which might be related with your requirement.
    - Draggable Node in Javafx 2.0
    - JavaFX Drag and Drop Cell in ListView
    For more please do some google on keywords like : javafx,drag,drop etc
    FYI: Documentation of JavaFX 2
    Thanks,
    Narayan

  • SQL editor with tree view

    We are working on some extraordiary long SQL stored procedure. Due to the shear size and IF/ELSE nesting it is very tedious to understand the logic .
    What I am looking for is an SQL editor with tree view, where we can see IF/ ELSE, LOOP etc block as nodes. For example expand a node and see all blcoks of code within it.
    + IF block 1
    expand---
    -IF blcok 1
    +IF block 1.1
    +IF block 1.2
    further expand
    -IF blcok 1
    +IF block 1.1
    -IF block 1.2
    IF block 1.2.1

    Do some Google searches for a text editor that supports "folding".

  • CheckBox node tree with two diferent kind of nodes

    Hai ,
    I need to build a check box tree with two different kind of nodes , Child and Parent nodes .
    CheckBox node tree with two diferent kind of nodes.
    HOw will i write the renderer and editor for this ?

    Study the method getTreeCellRendererComponent() of the class DefaultTreeCellRenderer.

  • Freeware Photo Editor with Compression Tools

    Is there free ware out there that can be downloaded to do the things (like photo compression) that iPhoto doesn't?
    I have discovered a round about way to compress photos by clicking "Share" and then "Email". It then lets you decide on three different compressed sizes, but it seems ridiculous to have to do this just to simply compress a photo and the three options they give you are quite limiting.
    I'm not sure if you're allowed to mention Microsoft on Apple websites, but even their basic photo editors allow you to compress photos for whatever use.
    I personally find this all to be very frustrating.....
    If anyone has some freeware solutions for photo editing, and in particular, photo compression (for emailing, posting on a website, etc), let me know!
    iMac Intel-based   Mac OS X (10.4.7)  

    Adumb:
    Resize! might be what you're referring to. With it you can resize the pixel dimensions and select the level of compression (quality level) for the new files. The export feature of iPhoto only lets you change the pixel dimension. There are other possible candidates at VersionTracker.com. Do a search there for "resize".
    Regarding mentioning the darkside, we'll be sending you some soap to gargle with.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    G5 Dual Core 2GHz, 2G RAM, 250G HD; G4 Dual 1Ghz, 1.5G RAM, 80G HD, QT 7.1.3,   Mac OS X (10.4.9)   22 LCD, 250G/200G/160G FW HDs, Canon: SD700IS/i850/LIDE 50, Epson R200, 30G iPod

  • Need help with Fluid Grid Layout and variable column balance.

    I'm using the fluid grid layout.  I have multiple columns that are actually fluid grid layout columns done by Dreamweaver.  I'd like them to extend as high as each other (all to the maximum height of each other) within the same section.  An added catch is that in the desktop layout, I have three side by side under one that takes the whole width of the page.  On tablet size, it's 2x2 in a square grid.  On mobile, they're vertically stacked.  I'm trying to get it so that background colour and/or borders looks decent and is fully balanced, no matter which layout is hit with the fluid layout.  The columns reflow, no problem.  But the height of any background and/or border is variable. 
    Any help on fixing this? 
    Example at:  https://music2help.thoughtburst.net/ 
    The example doesn't have borders or colours, as it looked silly unbalanced.  The music2help.css is the only one I'm modifying manually.
    Love the fluid grid layout, but I need a way to make it behave decently with backgrounds/borders.  Any help would be hugely appreciated!
    Thanks!
    mark->

    I tried the solution Nancy posted.  It altered things, but doesn't seem to do the trick.
    Just some quick background.  I did HTML from 1994 through about five years ago by hand in vi on *nix systems.  I learned HTML through 4.01, and never bothered with XHTML at all.  I learned CSS through most of CSS2.  The CSS3 and HTML5 stuff is all new to me, but it can't be that hard.  I'm not exactly a novice in JS (I've done a fair bit of AJAX programming), but it's not even close to my primary language (I'm a Perl guy).
    I'm "stuck on" wanting to use Fluid Grid Layouts.  It's billed as one of the selling points of DW CS6, and I really like the concept and results.  I just want the results embellished a little, namely with sensible identical heights on grid containers set in the same row, so that you can apply background colours, dropshadows, and borders.  That's really all I want to do that it doesn't already do.
    I have a test page at:  http://music2help.thoughtburst.net/ that you can try with your Quick Columns.  I'd be interested to know if you can get it to work.
    Here's the catch, though...  Resize the browser, shrinking it inwards.  (I suggest Firefox, as Chrome only shrinks so far, and you won't get to Mobile width.)  As you can see, on a Tablet, one of the columns that should be equal height actually moves up a row and should be equal height with the row that, on a desktop, would take the entire width of the page area.  So that's like a 4-up output in printing terms.  At Mobile size, the entire thing is vertical, so none of the columns should be resized.
    If your product works and can accomodate these conditions, I think I would be interested in spending the $35 it costs. 
    Let me know?  Thanks!
    EDIT:  Changed URL to be non-SSL.  The server has multiple vhosts on it, and I keep forgetting that I don't have a cert on this new one.  Sorry about that.  You can just add anything to one of the the three middle columns, if you're pulling it down to test.

  • Getting the size of resizable nodes

    Hi,
    how can I determine the width and the height of a resizable node (e.g. a Textfield or some other control), to use that in a custom layout or a custom control, that the resizable node is part of. It seems that the resizable node's width and height are computed later as everything I try returns width and height 0.
    Cheers
    Thomas

    Hi,
    thanks for your answer. That was my impression too, that a resizable node doesn't know its size until it is sized by it's container, which makes sense to a certain degree as "resizable" means that one has not to care about sizing as the parent container or layout does. Anyway in a context where you want to size or layout something depending on the size of an other node you have to know that other node's size and/or position during the layout/sizing process and not after it. Preliminary or invisibly rendering would be a workaround, yes, but isn't there a more elegant way for doing something like this? What is the best practice to do something like this, how is it done in the layout classes of JavaFX?
    Unfortunately the layouts in JavaFX are not open sourced yet (looking at them might be a good source) and the documentation on custom controls in general and sizing, positioning and dynamically laying out nodes in JavaFX 2.0 that can be found on the web so far is not very comprehensive.
    Cheers
    Thomas

  • How can I type "š" with english keyboard layout?

    I was wondering if somewho can tell me, how I can type "š" with englis keyboard layout, because when I have restart iMac, layout was changed back to english (from Slovak) and now I cant start Mac OS X, cause in my login is "š"

    Start with  the Apple menu in the upper left of the Menu Bar and select System Preferences. On the System Preferences pane on the top row is the UN flag icon. For Tiger (OS-X 10.4) it was called "International". Click to take you to the Language Options:
    The sub-menu called "Input Sources" (as you can see from the above screen shot) will take you to the panel that I referred to in the previous response. If you don't find your language listed then click on the "Edit List at the bottom left of the "Language" sub-menu. Once you make a change in either one of these places you will be given a notice to tell you that the change will be reflected the next time you restart your Mac or the next time that you log in to your account. If you are the only user and do not have another account on your Mac then the restart option will be your method. There is no need to do this procedure from the install DVD.

  • Problems with fluid grid layout live site only showing phone view in Chrome and Firefox Feb 2015

    Hi all,
    I have done a complex fluid grid layout using DW 2014 CC. The site has now gone live on the web masters server setup.
    Up until now the layout of the site has been working fine and responding to screen size.
    Early this morning in the USA the site stopped working. The layout for some users, not all, is only showing the phone view, and takes a long time to load.
    This is happening in Chrome and Firefox, but IE is displaying the site properly.
    So it looks like the CSS media queries are not working on all browsers.
    I am using BC for the test site, and one user having this problem can see that version of the site OK.
    I noticed that Chrome has done some updates recently Chrome Releases
    Has anyone else come across this problem with Chrome and Firefox with their responsive layouts?
    Thanks for any help given.

    Hi Ben,
    Yes, thanks for this link. The Travel Health Website is one of ours, hosted on BC, and no reported problems so far. We also have another large BC website with ga code in it and users are not reporting problems with it. The Headless Way
    However the problem website is hosted elsewhere on a different platform to BC. We have been developing it for three months now, and no problems so far until yesterday. The problem of the site taking ages to load, and timing out seems to be happening with about 10% of users in the USA. http://www.harrisonassessments.com/
    The web developer found a user in NZ who was experiencing the slow display problem. They looked at the site with Chrome, Firefox and IE. The site would only display on IE. When the developer removed the google analytics code, the site displayed fine on all browsers for the NZ user. We are waiting for users in the USA to wake up and test the site.
    So the problem definitely is related to the ga code and the responsive layout that was done by me in DW2014.1 fluid grid layout. So the related problem of DW2014.1 not being able to load htm files with ga code in them looks to be a good clue to what is going on here.
    As there was a bug report for DW2014.1 and google analytics code made in the other thread, I would be interested to know if that was ever solved.
    It is interesting that you are pushing Bootstrap and Foundation on me. (Big square websites here I come! lol)
    I wonder if DW is going to persist with fluid grid layout then? I certainly hope so, as I have spent 12 months blood sweat and tears learning how to do it in DW.

  • Xorg 1.5.3 - Still some issues with the keyboard layout

    well i read a lot of threads and i solved almost everything, but my keyboard layout is still a little strange, for example, before the "backslash" key (the one above the TAB key) doesn't work anymore, that really bothers me because i really use the midnight commander "hotdir" feature
    my config files:
    /etc/hal/fdi/policy/10-keymap.fdi
    <?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
    <deviceinfo version="0.2">
    <device>
    <match key="info.capabilities" contains="input.keymap">
    <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>
    <match key="info.capabilities" contains="input.keys">
    <merge key="input.xkb.rules" type="string">base</merge>
    <!-- If we're using Linux, we use evdev by default (falling back to
    keyboard otherwise). -->
    <merge key="input.xkb.model" type="string">keyboard</merge>
    <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
    string="Linux">
    <merge key="input.xkb.model" type="string">evdev</merge>
    </match>
    <merge key="input.xkb.layout" type="string">es</merge>
    <merge key="input.xkb.variant" type="string" />
    </matchudo
    </device>
    </deviceinfo>
    /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    # InputDevice "Keyboard0" "CoreKeyboard"
    # PS/2 Mouse not detected
    # Serial Mouse not detected
    # InputDevice "USB Mouse" "CorePointer"
    EndSection
    #Section "ServerFlags"
    # Option "AllowMouseOpenFail" "true"
    # Option "AutoAddDevices" "false"
    #EndSection
    Section "Files"
    # RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/local"
    FontPath "/usr/share/fonts/artwiz-fonts"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
    FontPath "/usr/share/fonts/cyrillic"
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    # Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    # Load "type1"
    Load "freetype"
    # Load "record"
    # Load "synaptics"
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    EndSection
    #Section "InputDevice" [b]#THIS WAS MY PREVIOUS KEYBOARD CONFIG, WITH IT THE LAYOUT WAS PERFECT...[/b]
    # Identifier "Keyboard0"
    # Driver "keyboard"
    # Option "CoreKeyboard"
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "es"
    # Option "XkbVariant" ""
    #EndSection
    #Section "InputDevice"
    # Identifier "Serial Mouse"
    # Driver "mouse"
    # Option "Protocol" "Microsoft"
    # Option "Device" "/dev/ttyS0"
    # Option "Emulate3Buttons" "true"
    # Option "Emulate3Timeout" "70"
    # Option "SendCoreEvents" "true"
    #EndSection
    #Section "InputDevice"
    # Identifier "PS/2 Mouse"
    # Driver "mouse"
    # Option "Protocol" "auto"
    # Option "ZAxisMapping" "4 5"
    # Option "Device" "/dev/psaux"
    # Option "Emulate3Buttons" "true"
    # Option "Emulate3Timeout" "70"
    # Option "SendCoreEvents" "true"
    #EndSection
    #Section "InputDevice"
    # Identifier "USB Mouse"
    # Driver "mouse"
    # Option "Device" "/dev/input/mice"
    # Option "SendCoreEvents" "true"
    # Option "Protocol" "IMPS/2"
    # Option "ZAxisMapping" "4 5"
    # Option "Buttons" "5"
    #EndSection
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    VendorName "SAM"
    ModelName "SyncMaster"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 75.0
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "Unknown Board"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    Option "NoLogo" "true"
    DefaultColorDepth 24
    SubSection "Display"
    Depth 1
    Modes "1680x1050" "1440x900" "1280x800" "1024x640" "800x500"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1680x1050" "1440x900" "1280x800" "1024x640" "800x500"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1680x1050" "1440x900" "1280x800" "1024x640" "800x500"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1680x1050" "1440x900" "1280x800" "1024x640" "800x500"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1680x1050" "1440x900" "1280x800" "1024x640" "800x500"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1680x1050" "1440x900" "1280x800" "1024x640" "800x500"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1680x1050" "1440x900" "1280x800" "1024x640" "800x500"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection

    nuttygamergeek wrote:
    You can change this line to the model you were using before, ie in your case pc105:
    <merge key="input.xkb.model" type="string">keyboard</merge>
    It won't be used unless evdev isn't working though.
    i did that and restarted hal but nothing changed, the behaviour is the same

  • PDF Portfolio Navigator with horizontal tab layout

    Hello, Experts
             I am trying to create a PDF Portfolios with horizontal tab layout structure;
             several .NET libraries allowed me to create PDF files with thumbnail layout, but, in order to populate a horizontal tab
             layout, it seems, I would need to create a custom PDF navigator and import it into PDF Portfolio prior to inserting PDF file components ?
            preinstalled navigators look great, but I just need a simple horizontal tab view, where each tab only contains file's name and nothing else;
             buy clicking on each tab - corresponding file would be activated in the viewer
           is there any library of predesigned navigators that I can use ?
            is there any way to extract navigator from one and import it into another PDF portfolio ?
           would I need to use Flash or can this be done via .NET ?
    Best Regards,
    -Alex

    tried to install Portfolio SDK
    can't see the Navigator project wizard in Flex Builder  (  4.6 )
    The plugins have been extracted to:
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse\plugins
    The NavigatorSupport folder has been extracted to:
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse and ( just in case ) to
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\

  • How to create Matrix with Group report layout in xml

    Hi,
    i would be glad if anyone could tell me How to create Matrix with Group report layout in xml?
    Here i am attaching the required design doc
    below is the code
    select COST_CMPNTCLS_CODE,
    -- crd.RESOURCES,
    NOMINAL_COST,
    cmm.COST_MTHD_CODE,
    -- crd.COST_TYPE_ID,
    gps.period_code
    -- ORGANIZATION_ID
    from CM_RSRC_DTL crd,
    gmf_period_statuses gps,
    CM_MTHD_MST cmm,
    CR_RSRC_MST crm,
    CM_CMPT_MST ccm
    where gps.period_id = crd.PERIOD_ID
    and crd.cost_type_id = cmm.cost_type_id
    and crd.RESOURCES = crm.RESOURCES
    and crm.COST_CMPNTCLS_ID = ccm.COST_CMPNTCLS_ID
    and gps.period_code in (:p_period1, :p_period2, :p_period3)
    group by COST_CMPNTCLS_CODE, cmm.COST_MTHD_CODE, gps.period_code,NOMINAL_COST
    order by 1,2,3,4.
    The o/p of the report shoud be as given below
              Period-1     Period-2     Period-3     Period-4
    COMPONENT                         
    LABOUR - DIRECT                         
         Actual     1     2     3     4
         Actual Rate     10     10     10     10
         Standard Rate                    
         Var%                    
    DEPRICIATION-DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    OVERHEAD - DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    LABOUR - IN DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    Thanks in advance

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • Edit in external editor with lightroom adjustments issue LR5 and PS CC

    Since several days when I try (in Lightroom) 5 to edit an adjusted file (NEF, JPEG or TIFF) in Photoshop CC as external editor (with the option "edit a copy with lightroom adjustments") in many cases the adjustments ar not visible in photoshop CC, or only partial visible, and sometimes the file opens not at all. Removal of the preference files of LR 5 and PS CC and  a whole new installation of LR 5 didn't resolve the issue. I have a macbookPRO with Mac OS 10.8.5 and the most recent versions of LR 5 and PS CC. Has anyone experienced this problem and what can be a solution.

    I have no idea, but have you tried File / Catalog Settings/ General tab: Relaunch and Optimize. Relates to the database.

Maybe you are looking for